Skip to content

Commit 3555981

Browse files
committed
fix: omit @internal from bundled types
1 parent ff5e3c0 commit 3555981

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

typescript/src/types.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ export type UploadFolderResponse = {
102102
folder: Resource;
103103
};
104104

105-
/**
106-
* @internal
107-
*/
108105
abstract class UploadResponse {
109106
constructor(
110107
private readonly resource: Resource,

typescript/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "./tsconfig.base.json",
44
"compilerOptions": {
5-
"outDir": "dist"
5+
"outDir": "dist",
6+
"stripInternal": true
67
},
78
"include": ["./src/**/*.ts"]
89
}

0 commit comments

Comments
 (0)