Skip to content

Commit

Permalink
Add missing extensions to import statements minio#1128
Browse files Browse the repository at this point in the history
  • Loading branch information
fflorent committed Jul 18, 2023
1 parent de79310 commit a21c956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Credentials.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ICredentials } from './internal/type'
import type { ICredentials } from './internal/type.ts'

export class Credentials {
public accessKey: string
Expand Down
3 changes: 1 addition & 2 deletions src/internal/xml-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { XMLParser } from 'fast-xml-parser'
import * as errors from '../errors.ts'
import { parseXml, sanitizeETag, sanitizeObjectKey, toArray } from './helper.ts'
import { readAsString } from './response.ts'
import type { BucketItemWithMetadata } from './type'
import type { BucketItemFromList } from './type.ts'
import type { BucketItemWithMetadata, BucketItemFromList } from './type.ts'

// parse XML response for bucket region
export function parseBucketRegion(xml: string): string {
Expand Down

0 comments on commit a21c956

Please sign in to comment.