We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff5e3c0 commit 3555981Copy full SHA for 3555981
typescript/src/types.ts
@@ -102,9 +102,6 @@ export type UploadFolderResponse = {
102
folder: Resource;
103
};
104
105
-/**
106
- * @internal
107
- */
108
abstract class UploadResponse {
109
constructor(
110
private readonly resource: Resource,
typescript/tsconfig.build.json
@@ -2,7 +2,8 @@
2
"$schema": "https://json.schemastore.org/tsconfig",
3
"extends": "./tsconfig.base.json",
4
"compilerOptions": {
5
- "outDir": "dist"
+ "outDir": "dist",
6
+ "stripInternal": true
7
},
8
"include": ["./src/**/*.ts"]
9
}
0 commit comments