summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 0e5453554..f6e8aefd2 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -766,7 +766,7 @@ declare namespace Deno {
*
* Requires `allow-write` permission. */
export function utimeSync(
- path: string,
+ path: string | URL,
atime: number | Date,
mtime: number | Date,
): void;
@@ -783,7 +783,7 @@ declare namespace Deno {
*
* Requires `allow-write` permission. */
export function utime(
- path: string,
+ path: string | URL,
atime: number | Date,
mtime: number | Date,
): Promise<void>;