diff options
Diffstat (limited to 'std/fmt/printf.ts')
-rw-r--r-- | std/fmt/printf.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fmt/printf.ts b/std/fmt/printf.ts index 36b6dddb0..2fb8acc0b 100644 --- a/std/fmt/printf.ts +++ b/std/fmt/printf.ts @@ -659,7 +659,7 @@ class Printf { } } - fmtV(val: object): string { + fmtV(val: Record<string, unknown>): string { if (this.flags.sharp) { const options = this.flags.precision !== -1 ? { depth: this.flags.precision } |