fix: import js

This commit is contained in:
Derrick Hammer 2023-12-10 15:29:43 -05:00
parent 80d5d2d027
commit 395b8a6ca7
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
import mime from "mime/lite"; import mime from "mime/lite";
import path from "path"; import path from "path";
import { trimPrefix } from "./string.ts"; import { trimPrefix } from "./string.js";
/** /**
* Get the file mime type. In case the type is not provided, try to guess the * Get the file mime type. In case the type is not provided, try to guess the

View File

@ -1,4 +1,4 @@
import { CustomClientOptions } from "../client.ts"; import { CustomClientOptions } from "../client.js";
// TODO: Unnecessary, remove. // TODO: Unnecessary, remove.
/** /**

View File

@ -1,8 +1,8 @@
import urljoin from "url-join"; import urljoin from "url-join";
import parse from "url-parse"; import parse from "url-parse";
import { trimSuffix } from "./string.ts"; import { trimSuffix } from "./string.js";
import { throwValidationError } from "./validation.ts"; import { throwValidationError } from "./validation.js";
export const DEFAULT_S5_PORTAL_URL = "https://localhost:5522"; export const DEFAULT_S5_PORTAL_URL = "https://localhost:5522";