Skip to content

Commit

Permalink
fix: types for minio
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Dec 18, 2024
1 parent 08c7b4f commit d931304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"tasks": {
"check": "deno fmt --check && deno lint && biome lint",
"dry-run": "deno publish --dry-run",
"test": "deno test --allow-sys --allow-env --clean --coverage"
},
"lint": {
Expand Down
3 changes: 1 addition & 2 deletions storage-s3/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// import packages
import { Buffer } from 'node:buffer'
import { getRequiredEnv } from '@frytg/check-required-env/get'
// @deno-types="minio/dist/esm/minio.d.mts"
import type { BucketItem, BucketItemStat, BucketStream, Client } from 'minio'
import type { BucketItem, BucketItemStat, BucketStream, Client } from 'minio/dist/esm/minio.d.mts'

// load utils
import { minioClient } from './s3.ts'
Expand Down

0 comments on commit d931304

Please sign in to comment.