Skip to content

Commit

Permalink
fix: missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
alanshaw committed May 1, 2024
1 parent 782c6d0 commit dec43e5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/upload-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
"admin": [
"dist/src/admin.d.ts"
],
"blob": [
"dist/src/blob.d.ts"
],
"console": [
"dist/src/console.d.ts"
],
Expand All @@ -39,6 +42,9 @@
"errors": [
"dist/src/errors.d.ts"
],
"index": [
"dist/src/index.d.ts"
],
"plan": [
"dist/src/plan.d.ts"
],
Expand Down Expand Up @@ -100,6 +106,10 @@
"types": "./dist/src/admin.d.ts",
"import": "./src/admin.js"
},
"./blob": {
"types": "./dist/src/blob.d.ts",
"import": "./src/blob.js"
},
"./console": {
"types": "./dist/src/console.d.ts",
"import": "./src/console.js"
Expand All @@ -116,6 +126,10 @@
"types": "./dist/src/errors.d.ts",
"import": "./src/errors.js"
},
"./index": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
},
"./plan": {
"types": "./dist/src/plan.d.ts",
"import": "./src/plan.js"
Expand Down
2 changes: 2 additions & 0 deletions packages/upload-api/src/blob.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { blobListProvider } from './blob/list.js'
import { blobRemoveProvider } from './blob/remove.js'
import * as API from './types.js'

export { BlobNotFound } from './blob/lib.js'

/**
* @param {API.BlobServiceContext} context
*/
Expand Down

0 comments on commit dec43e5

Please sign in to comment.