fix: declare fs.stat()

This commit is contained in:
MDLeom 2024-10-28 07:34:01 +00:00
parent cd34943180
commit 8cb1b7f724
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
import { Extract } from 'unzipper'
import { dirname, join } from 'node:path'
import { mkdir, readdir, rm } from 'node:fs/promises'
import { mkdir, readdir, rm, stat } from 'node:fs/promises'
import { pipeline } from 'node:stream/promises'
import { fileURLToPath } from 'node:url'
import { Readable } from 'node:stream'