mirror of
https://github.com/koishijs/novelai-bot
synced 2025-04-04 09:41:18 +08:00
chore: fix typings
PTAL @lgc2333
This commit is contained in:
parent
85cd7b95d0
commit
32596946cf
@ -610,7 +610,7 @@ export function apply(ctx: Context, config: Config) {
|
||||
// Gets all files in the ZIP file
|
||||
const zipEntries = zip.getEntries()
|
||||
const firstImageBuffer = zip.readFile(zipEntries[0])
|
||||
const b64 = Buffer.from(firstImageBuffer).toString('base64')
|
||||
const b64 = firstImageBuffer.toString('base64')
|
||||
return forceDataPrefix(b64, 'image/png')
|
||||
}
|
||||
return forceDataPrefix(res.data?.trimEnd().slice(27))
|
||||
|
@ -21,7 +21,7 @@ export interface Size {
|
||||
|
||||
export function getImageSize(buffer: ArrayBuffer): Size {
|
||||
if (typeof Buffer !== 'undefined') {
|
||||
return imageSize(Buffer.from(buffer))
|
||||
return imageSize(new Uint8Array(buffer))
|
||||
}
|
||||
const blob = new Blob([buffer])
|
||||
const image = new Image()
|
||||
|
Loading…
x
Reference in New Issue
Block a user