@hiver/connector-agent 0.0.0
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.
- package/README.md +50 -0
- package/app/index.d.ts +2 -0
- package/app/index.d.ts.map +1 -0
- package/app/provider.d.ts +6 -0
- package/app/provider.d.ts.map +1 -0
- package/constants/api.d.ts +12 -0
- package/constants/api.d.ts.map +1 -0
- package/constants/card.d.ts +3 -0
- package/constants/card.d.ts.map +1 -0
- package/context/index.d.ts +18 -0
- package/context/index.d.ts.map +1 -0
- package/context/main-app-provider/index.d.ts +7 -0
- package/context/main-app-provider/index.d.ts.map +1 -0
- package/features/connector-cards/api/index.d.ts +2 -0
- package/features/connector-cards/api/index.d.ts.map +1 -0
- package/features/connector-cards/components/card-list/__test__/card-list.test.d.ts +2 -0
- package/features/connector-cards/components/card-list/__test__/card-list.test.d.ts.map +1 -0
- package/features/connector-cards/components/card-list/index.d.ts +3 -0
- package/features/connector-cards/components/card-list/index.d.ts.map +1 -0
- package/features/connector-cards/components/card-list/style.d.ts +10 -0
- package/features/connector-cards/components/card-list/style.d.ts.map +1 -0
- package/features/connector-cards/constants/api.d.ts +4 -0
- package/features/connector-cards/constants/api.d.ts.map +1 -0
- package/features/connector-cards/store/hooks.d.ts +7 -0
- package/features/connector-cards/store/hooks.d.ts.map +1 -0
- package/features/connector-cards/store/index.d.ts +18 -0
- package/features/connector-cards/store/index.d.ts.map +1 -0
- package/features/connector-cards/store/initial-state.d.ts +12 -0
- package/features/connector-cards/store/initial-state.d.ts.map +1 -0
- package/features/connector-cards/store/selectors.d.ts +8 -0
- package/features/connector-cards/store/selectors.d.ts.map +1 -0
- package/features/connector-cards/store/slice.d.ts +17 -0
- package/features/connector-cards/store/slice.d.ts.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.es.js +26168 -0
- package/index.umd.js +2033 -0
- package/main.d.ts +1 -0
- package/main.d.ts.map +1 -0
- package/mockServiceWorker.js +280 -0
- package/package.json +39 -0
- package/testing/mocks/browser.d.ts +2 -0
- package/testing/mocks/browser.d.ts.map +1 -0
- package/testing/mocks/handlers/bifrost-token.d.ts +2 -0
- package/testing/mocks/handlers/bifrost-token.d.ts.map +1 -0
- package/testing/mocks/handlers/fetch-cards.d.ts +2 -0
- package/testing/mocks/handlers/fetch-cards.d.ts.map +1 -0
- package/testing/mocks/handlers.d.ts +2 -0
- package/testing/mocks/handlers.d.ts.map +1 -0
- package/testing/mocks/server.d.ts +2 -0
- package/testing/mocks/server.d.ts.map +1 -0
- package/testing/setup-test.d.ts +1 -0
- package/testing/setup-test.d.ts.map +1 -0
- package/testing/test-utils.d.ts +62 -0
- package/testing/test-utils.d.ts.map +1 -0
- package/theme.d.ts +3 -0
- package/theme.d.ts.map +1 -0
- package/types/api.d.ts +2 -0
- package/types/api.d.ts.map +1 -0
- package/types/cards.d.ts +26 -0
- package/types/cards.d.ts.map +1 -0
- package/vite.svg +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# React + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
+
|
|
5
|
+
Currently, two official plugins are available:
|
|
6
|
+
|
|
7
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
+
|
|
10
|
+
## Expanding the ESLint configuration
|
|
11
|
+
|
|
12
|
+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
13
|
+
|
|
14
|
+
- Configure the top-level `parserOptions` property like this:
|
|
15
|
+
|
|
16
|
+
```js
|
|
17
|
+
export default tseslint.config({
|
|
18
|
+
languageOptions: {
|
|
19
|
+
// other options...
|
|
20
|
+
parserOptions: {
|
|
21
|
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
22
|
+
tsconfigRootDir: import.meta.dirname,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
|
|
29
|
+
- Optionally add `...tseslint.configs.stylisticTypeChecked`
|
|
30
|
+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
|
|
31
|
+
|
|
32
|
+
```js
|
|
33
|
+
// eslint.config.js
|
|
34
|
+
import react from 'eslint-plugin-react'
|
|
35
|
+
|
|
36
|
+
export default tseslint.config({
|
|
37
|
+
// Set the react version
|
|
38
|
+
settings: { react: { version: '18.3' } },
|
|
39
|
+
plugins: {
|
|
40
|
+
// Add the react plugin
|
|
41
|
+
react,
|
|
42
|
+
},
|
|
43
|
+
rules: {
|
|
44
|
+
// other rules...
|
|
45
|
+
// Enable its recommended rules
|
|
46
|
+
...react.configs.recommended.rules,
|
|
47
|
+
...react.configs['jsx-runtime'].rules,
|
|
48
|
+
},
|
|
49
|
+
})
|
|
50
|
+
```
|
package/app/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/app/index.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,GAAG,+CAMf,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/app/provider.tsx"],"names":[],"mappings":"AAOA,KAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,WAAW,iBAAkB,gBAAgB,4CAUzD,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type ApiStatus = 'idle' | 'loading' | 'failed';
|
|
2
|
+
export declare const API_METHODS: {
|
|
3
|
+
GET: string;
|
|
4
|
+
POST: string;
|
|
5
|
+
DELETE: string;
|
|
6
|
+
PATCH: string;
|
|
7
|
+
PUT: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const API_STATUS: {
|
|
10
|
+
[key: string]: ApiStatus;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/constants/api.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEtD,eAAO,MAAM,WAAW;;;;;;CAMvB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;CAIlD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../src/constants/card.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,SAAS,CAAC;AAC3B,eAAO,MAAM,MAAM,WAAW,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface IConnectorType {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
isEnabled: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface ICurrentOption {
|
|
7
|
+
[key: string]: 'open' | 'closed';
|
|
8
|
+
}
|
|
9
|
+
export interface IMainAppContext {
|
|
10
|
+
currentOpenState: ICurrentOption | null;
|
|
11
|
+
setCurrentOpenState: (value: ICurrentOption | null) => void;
|
|
12
|
+
}
|
|
13
|
+
export declare const defaultMainAppvalues: {
|
|
14
|
+
currentOpenState: null;
|
|
15
|
+
setCurrentOpenState: () => void;
|
|
16
|
+
};
|
|
17
|
+
export declare const MainAppContext: import('react').Context<IMainAppContext>;
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/context/index.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;CAClC;AAED,MAAM,WAAW,eAAe;IAC9B,gBAAgB,EAAE,cAAc,GAAG,IAAI,CAAC;IACxC,mBAAmB,EAAE,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAC;CAC7D;AAED,eAAO,MAAM,oBAAoB;;;CAGhC,CAAC;AAEF,eAAO,MAAM,cAAc,0CAAuD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/context/main-app-provider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,OAAO,CAAC;AAG5C,UAAU,MAAM;IACd,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,QAAA,MAAM,eAAe,iBAAkB,MAAM,4CAY5C,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/api/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,gBAAgB,oEAK5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card-list.test.d.ts","sourceRoot":"","sources":["../../../../../../src/features/connector-cards/components/card-list/__test__/card-list.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAiC,MAAM,OAAO,CAAC;AAmB1D,eAAO,MAAM,QAAQ,EAAE,EAkEtB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BoxProps, GridProps, TypographyProps } from '@hiver/hiver-ui-kit';
|
|
2
|
+
import { StyledComponent } from '@emotion/styled';
|
|
3
|
+
export declare const ParentCardWrapper: StyledComponent<GridProps>;
|
|
4
|
+
export declare const CardWrapper: StyledComponent<BoxProps>;
|
|
5
|
+
export declare const CardHeading: StyledComponent<BoxProps>;
|
|
6
|
+
export declare const HeadingText: StyledComponent<TypographyProps>;
|
|
7
|
+
export declare const CardContent: StyledComponent<BoxProps>;
|
|
8
|
+
export declare const LabelText: StyledComponent<TypographyProps>;
|
|
9
|
+
export declare const ValueText: StyledComponent<TypographyProps>;
|
|
10
|
+
//# sourceMappingURL=style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/style.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,SAAS,CAIxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAMjD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAUjD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAGxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAGjD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAEtD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/constants/api.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,YAAY,CAAC;AAClC,eAAO,MAAM,mBAAmB,EAAE,MAAwC,CAAC;AAC3E,eAAO,MAAM,uBAAuB,EAAE,MAAkD,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const useAppDispatch: import('react-redux').UseDispatch<import('redux-thunk').ThunkDispatch<{
|
|
2
|
+
cardList: import('./initial-state').IConnectorState;
|
|
3
|
+
}, undefined, import('redux').UnknownAction> & import('redux').Dispatch<import('redux').UnknownAction>>;
|
|
4
|
+
export declare const useAppSelector: import('react-redux').UseSelector<{
|
|
5
|
+
cardList: import('./initial-state').IConnectorState;
|
|
6
|
+
}>;
|
|
7
|
+
//# sourceMappingURL=hooks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/hooks.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,cAAc;;uGAAuC,CAAC;AACnE,eAAO,MAAM,cAAc;;EAAqC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Action, ThunkAction } from '@reduxjs/toolkit';
|
|
2
|
+
export declare const rootReducer: import('redux').Reducer<{
|
|
3
|
+
cardList: import('./initial-state').IConnectorState;
|
|
4
|
+
}, import('redux').UnknownAction, Partial<{
|
|
5
|
+
cardList: import('./initial-state').IConnectorState | undefined;
|
|
6
|
+
}>>;
|
|
7
|
+
export declare const store: import('@reduxjs/toolkit').EnhancedStore<{
|
|
8
|
+
cardList: import('./initial-state').IConnectorState;
|
|
9
|
+
}, import('redux').UnknownAction, import('@reduxjs/toolkit').Tuple<[import('redux').StoreEnhancer<{
|
|
10
|
+
dispatch: import('redux-thunk').ThunkDispatch<{
|
|
11
|
+
cardList: import('./initial-state').IConnectorState;
|
|
12
|
+
}, undefined, import('redux').UnknownAction>;
|
|
13
|
+
}>, import('redux').StoreEnhancer]>>;
|
|
14
|
+
export type AppStore = typeof store;
|
|
15
|
+
export type RootState = ReturnType<AppStore['getState']>;
|
|
16
|
+
export type AppDispatch = AppStore['dispatch'];
|
|
17
|
+
export type AppThunk<ThunkReturnType = void> = ThunkAction<ThunkReturnType, RootState, unknown, Action>;
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE5D,eAAO,MAAM,WAAW;;;;GAEtB,CAAC;AAEH,eAAO,MAAM,KAAK;;;;;;oCAGhB,CAAC;AAGH,MAAM,MAAM,QAAQ,GAAG,OAAO,KAAK,CAAC;AACpC,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC;AAEzD,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC;AAE/C,MAAM,MAAM,QAAQ,CAAC,eAAe,GAAG,IAAI,IAAI,WAAW,CAAC,eAAe,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ApiStatus } from '../../../types/api';
|
|
2
|
+
import { ICard, ISpecificCard } from '../../../types/cards';
|
|
3
|
+
export interface IConnectorState {
|
|
4
|
+
connectorCards: Array<ICard> | null;
|
|
5
|
+
cardSpecificData: ISpecificCard[] | null;
|
|
6
|
+
connectorApiStatus: ApiStatus;
|
|
7
|
+
specificConnectorApiStatus?: {
|
|
8
|
+
[key: string]: ISpecificCard;
|
|
9
|
+
} | null;
|
|
10
|
+
}
|
|
11
|
+
export declare const initialState: IConnectorState;
|
|
12
|
+
//# sourceMappingURL=initial-state.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"initial-state.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/initial-state.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE1D,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;IACpC,gBAAgB,EAAE,aAAa,EAAE,GAAG,IAAI,CAAC;IACzC,kBAAkB,EAAE,SAAS,CAAC;IAC9B,0BAA0B,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,GAAG,IAAI,CAAC;CACtE;AAGD,eAAO,MAAM,YAAY,EAAE,eAK1B,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RootState } from '.';
|
|
2
|
+
export declare const selectConnector: (state: RootState) => import('../../../types/cards').ICard[] | null;
|
|
3
|
+
export declare const selectConnectorApiStatus: (state: RootState) => import('../../../types/api').ApiStatus;
|
|
4
|
+
export declare const selectSpecificConnector: (state: RootState) => import('../../../types/cards').ISpecificCard[] | null;
|
|
5
|
+
export declare const selectSpecificConnectorApiStatus: (state: RootState) => {
|
|
6
|
+
[key: string]: import('../../../types/cards').ISpecificCard;
|
|
7
|
+
} | null | undefined;
|
|
8
|
+
//# sourceMappingURL=selectors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/selectors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,eAAO,MAAM,eAAe,UAAW,SAAS,kDAAkC,CAAC;AACnF,eAAO,MAAM,wBAAwB,UAAW,SAAS,2CAAsC,CAAC;AAChG,eAAO,MAAM,uBAAuB,UAAW,SAAS,0DAAoC,CAAC;AAC7F,eAAO,MAAM,gCAAgC,UAAW,SAAS;;oBAA8C,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { selectConnector } from './selectors';
|
|
2
|
+
export declare const connectorCardLibrary: import('@reduxjs/toolkit').Slice<import('./initial-state').IConnectorState, {}, "connectorCardLibrary", "connectorCardLibrary", import('@reduxjs/toolkit').SliceSelectors<import('./initial-state').IConnectorState>>;
|
|
3
|
+
declare const fetchAllCardsData: import('@reduxjs/toolkit').AsyncThunk<any, void, {
|
|
4
|
+
state?: unknown;
|
|
5
|
+
dispatch?: import('redux-thunk').ThunkDispatch<unknown, unknown, import('redux').UnknownAction>;
|
|
6
|
+
extra?: unknown;
|
|
7
|
+
rejectValue?: unknown;
|
|
8
|
+
serializedErrorType?: unknown;
|
|
9
|
+
pendingMeta?: unknown;
|
|
10
|
+
fulfilledMeta?: unknown;
|
|
11
|
+
rejectedMeta?: unknown;
|
|
12
|
+
}>;
|
|
13
|
+
declare const _default: import('redux').Reducer<import('./initial-state').IConnectorState>;
|
|
14
|
+
export default _default;
|
|
15
|
+
export declare const actions: import('@reduxjs/toolkit').CaseReducerActions<{}, "connectorCardLibrary">;
|
|
16
|
+
export { selectConnector, fetchAllCardsData };
|
|
17
|
+
//# sourceMappingURL=slice.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slice.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/slice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAE9C,eAAO,MAAM,oBAAoB,qRAiB/B,CAAC;AAIH,QAAA,MAAM,iBAAiB;;;;;;;;;EAQrB,CAAC;;AAEH,wBAA4C;AAC5C,eAAO,MAAM,OAAO,2EAA+B,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,CAAC"}
|
package/index.d.ts
ADDED
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,IAAI,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC"}
|