@kepoai/types 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,34 @@
1
+ import { Options, Events } from "@kepo/provider/api";
2
+ import React from "react";
3
+ export interface EventProps {
4
+ name: string;
5
+ size: size;
6
+ }
7
+ /**
8
+ * '0.5*1':'short' - 低高度。
9
+ * '1*1':'small' - 标准尺寸。
10
+ * '1*2':'wide' - 宽尺寸。
11
+ * '2*2':'large' - 大尺寸。
12
+ * '4*4':'giant' - 最大尺寸。
13
+ */
14
+ export declare const sizes: readonly ["short", "small", "wide", "large", "giant"];
15
+ export type size = (typeof sizes)[number];
16
+ export interface IWidget {
17
+ name: string;
18
+ component: React.ComponentType<any>;
19
+ sizes: size[];
20
+ configs?: Record<string, Options>;
21
+ events: Events;
22
+ actions?: {
23
+ [methodName: string]: (props: any) => any;
24
+ };
25
+ }
26
+ export interface IPlugin {
27
+ name: string;
28
+ description: string;
29
+ version: string;
30
+ widgets: IWidget[];
31
+ }
32
+ /**
33
+ * todo 提供消息展示功能, 直接遮住整体 点击弹窗
34
+ */
package/dist/index.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * '0.5*1':'short' - 低高度。
3
+ * '1*1':'small' - 标准尺寸。
4
+ * '1*2':'wide' - 宽尺寸。
5
+ * '2*2':'large' - 大尺寸。
6
+ * '4*4':'giant' - 最大尺寸。
7
+ */
8
+ export const sizes = ["short", "small", "wide", "large", "giant"];
9
+ /**
10
+ * todo 提供消息展示功能, 直接遮住整体 点击弹窗
11
+ */
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA;;;;;;GAMG;AAEH,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAC,OAAO,EAAC,OAAO,CAAU,CAAA;AAsBxE;;GAEG"}
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@kepoai/types",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "main" : "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "watch": "tsc --watch"
10
+ },
11
+ "author": "",
12
+ "license": "ISC",
13
+ "dependencies": {
14
+ },
15
+ "devDependencies": {
16
+ "@types/react": "^18.2.46"
17
+ }
18
+ }
package/src/index.ts ADDED
@@ -0,0 +1,50 @@
1
+ import {Options,Events} from "@kepo/provider/api";
2
+ import React from "react";
3
+
4
+ export interface EventProps {
5
+ name: string;
6
+ size: size;
7
+ }
8
+
9
+ /**
10
+ * '0.5*1':'short' - 低高度。
11
+ * '1*1':'small' - 标准尺寸。
12
+ * '1*2':'wide' - 宽尺寸。
13
+ * '2*2':'large' - 大尺寸。
14
+ * '4*4':'giant' - 最大尺寸。
15
+ */
16
+
17
+ export const sizes = ["short", "small", "wide","large","giant"] as const
18
+ export type size = (typeof sizes)[number]
19
+
20
+ export interface IWidget {
21
+ name: string;
22
+ component: React.ComponentType<any>;
23
+ sizes: size[];
24
+ configs?: Record<string, Options>;
25
+ events: Events;
26
+ actions?: {
27
+ [methodName: string]: (props: any) => any;
28
+ };
29
+ }
30
+
31
+ export interface IPlugin {
32
+ name: string;
33
+ description: string;
34
+ version:string;
35
+ widgets: IWidget[];
36
+ }
37
+
38
+
39
+ /**
40
+ * todo 提供消息展示功能, 直接遮住整体 点击弹窗
41
+ */
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
package/tsconfig.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "esnext", // 根据您的Node.js版本,设置为适当的ECMAScript版本
4
+ "module": "esnext",
5
+ "jsx": "react",
6
+ "sourceMap": true, // 生成源码映射文件以支持调试
7
+ "outDir": "./dist", // 编译后文件的输出目录
8
+ "rootDir": "./src", // 您的源文件所在的目录
9
+ "strict": true, // 启用所有严格类型检查选项
10
+ "esModuleInterop": true, // 启用esModule语法
11
+ "moduleResolution": "node",
12
+ "resolveJsonModule": true, // 允许导入.json文件
13
+ "isolatedModules": true, // 确保每个文件可以单独编译
14
+ "forceConsistentCasingInFileNames": true,
15
+ "skipLibCheck": true, // 跳过库文件的类型检查,加快编译速度
16
+ "noImplicitAny": true,
17
+ "declaration": true,
18
+ "composite": true,
19
+ "lib": ["dom", "esnext"],
20
+ "baseUrl": "./src", // 基本URL设置为项目根目录
21
+ },
22
+ "include": ["**/*","types.d.ts"], // 包含src目录及其所有子目录中的文件
23
+ "exclude": ["node_modules", "dist"] // 排除不需要编译的目录
24
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../library/pnpm/global/5/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../provider/dist/api/config.d.ts","../provider/dist/api/storage.d.ts","../../../kepo/@kepo/types/node_modules/.pnpm/@types+react@18.2.48/node_modules/@types/react/global.d.ts","../../../kepo/@kepo/types/node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../kepo/@kepo/types/node_modules/.pnpm/@types+prop-types@15.7.11/node_modules/@types/prop-types/index.d.ts","../../../kepo/@kepo/types/node_modules/.pnpm/@types+scheduler@0.16.8/node_modules/@types/scheduler/tracing.d.ts","../../../kepo/@kepo/types/node_modules/.pnpm/@types+react@18.2.48/node_modules/@types/react/index.d.ts","../../../kepo/@kepo/types/dist/index.d.ts","../provider/dist/api/event.d.ts","../provider/dist/api/index.d.ts","./node_modules/.pnpm/@types+react@18.2.48/node_modules/@types/react/index.d.ts","./src/index.ts","./node_modules/.pnpm/@types+react@18.2.48/node_modules/@types/react/global.d.ts","./node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","./node_modules/.pnpm/@types+prop-types@15.7.11/node_modules/@types/prop-types/index.d.ts","./node_modules/.pnpm/@types+scheduler@0.16.8/node_modules/@types/scheduler/tracing.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"84ecd7e21275f79fad8bf3e67ca9d6eae464cfe8113e1c1031e30a416442235d","276fb9bff54ffa5eb6dfb1a2b7087536dc41cf40ce97f15f75f7c24bd71c9a51",{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda",{"version":"e6f3077b1780226627f76085397d10c77a4d851c7154fd4b3f1eb114f4c2e56d","affectsGlobalScope":true},"d694132d80ccb3f6a3770590bb2b67542b26cb91a90761cc0ec6c79e71b4133d","aba3d3cc461154df3a88cb7c8c5901a3aa27eabad170c0b72d3c68f1a8ce094e","b72c558feda3a595323f54173309c3c98111877d18ca62c5fdb011c1331f572f",{"version":"e6f3077b1780226627f76085397d10c77a4d851c7154fd4b3f1eb114f4c2e56d","affectsGlobalScope":true},{"version":"7b8fdc76b40a332fb5769afa440fcedd1befc3b51f6d5ee6eacd1b930735f06e","signature":"4acc84308be5c41a099059c6e82fb85e79f7fb6818be2c822236117a4d55aa85"}],"root":[76],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":2,"module":99,"noImplicitAny":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[72],[65,66,73],[68,69,70,77],[71,74],[67,68,69,70],[77,78,79,80]],"referencedMap":[[73,1],[74,2],[75,3],[76,4],[72,4],[71,5]],"exportedModulesMap":[[73,1],[74,2],[75,6],[76,4],[72,4],[71,5]],"semanticDiagnosticsPerFile":[63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,65,73,74,66,75,76,72,69,67,71,70,68],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.3.3"}