diff --git a/src/Credentials.ts b/src/Credentials.ts index 47421869..7d972e62 100644 --- a/src/Credentials.ts +++ b/src/Credentials.ts @@ -1,4 +1,4 @@ -import type { ICredentials } from './internal/type' +import type { ICredentials } from './internal/type.ts' export class Credentials { public accessKey: string diff --git a/src/internal/xml-parser.ts b/src/internal/xml-parser.ts index 80e9d4f4..1fa206da 100644 --- a/src/internal/xml-parser.ts +++ b/src/internal/xml-parser.ts @@ -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 {