Skip to content

Commit e613fff

Browse files
committed
🏗️ Add entry point for cloud and server
1 parent 9341c21 commit e613fff

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@
7373
".": {
7474
"types": "./dist/index.d.ts",
7575
"default": "./dist/index.js"
76+
},
77+
"./cloud": {
78+
"types": "./dist/cloud/index.d.ts",
79+
"default": "./dist/cloud/index.js"
80+
},
81+
"./server": {
82+
"types": "./dist/server/index.d.ts",
83+
"default": "./dist/server/index.js"
7684
}
7785
},
7886
"types": "dist/index.d.ts",

src/cloud/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export * from "./client.js"
2-
export type * as cloud from "./openapi/index.js"
2+
export type * from "./openapi/index.js"

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export * from "./base64.js"
2-
export * from "./cloud/index.js"
3-
export * from "./server/index.js"
2+
export * as cloud from "./cloud/index.js"
3+
export * as server from "./server/index.js"

typedoc.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./src/index.ts"],
3+
"entryPoints": [
4+
"./src/index.ts",
5+
"./src/cloud/index.ts",
6+
"./src/server/index.ts"
7+
],
48
"highlightLanguages": ["ini", "sh", "ts"]
59
}

0 commit comments

Comments
 (0)