shinkansen-transmission 2.2.35 → 2.2.38

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.d.cts +22 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-transmission",
3
- "version": "2.2.35",
3
+ "version": "2.2.38",
4
4
  "description": "Shinkansen Transmission",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -41,7 +41,7 @@
41
41
  "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
42
42
  "@babel/preset-env": "^7.21.5",
43
43
  "@babel/register": "^7.21.0",
44
- "@modernpoacher/hooks": "^1.0.398",
44
+ "@modernpoacher/hooks": "^1.0.399",
45
45
  "@typescript-eslint/eslint-plugin": "^5.59.5",
46
46
  "@typescript-eslint/parser": "^5.59.5",
47
47
  "babel-loader": "^9.1.2",
@@ -0,0 +1,22 @@
1
+ declare module 'shinkansen-transmission/transmission/common' {
2
+ export * from './transmission/common/index.mjs'
3
+ }
4
+
5
+ declare module 'shinkansen-transmission/transmission/from-document-to-hash' {
6
+ export * from './transmission/from-document-to-hash/index.mjs'
7
+ }
8
+
9
+ declare module 'shinkansen-transmission/transmission/from-hash-to-document' {
10
+ export * from './transmission/from-hash-to-document.mjs'
11
+ }
12
+
13
+ declare module 'shinkansen-transmission/transmission/to-zashiki' {
14
+ export * from './transmission/to-zashiki/index.mjs'
15
+ }
16
+
17
+ declare module 'shinkansen-transmission/transmission' {
18
+ export * as common from 'shinkansen-transmission/transmission/common'
19
+ export { default as fromDocumentToHash } from 'shinkansen-transmission/transmission/from-document-to-hash'
20
+ export { default as fromHashToDocument } from 'shinkansen-transmission/transmission/from-hash-to-document'
21
+ export { default as toZashiki } from 'shinkansen-transmission/transmission/to-zashiki'
22
+ }