Fix: Wrong type for attachment size.

This commit is contained in:
Paul
2021-07-04 18:23:06 +01:00
parent a0500f22c0
commit 60c650d448
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "revolt.js",
"version": "4.3.3-alpha.7",
"version": "4.3.3-alpha.8",
"main": "dist/index.js",
"repository": "https://gitlab.insrt.uk/revolt/revolt.js",
"author": "Paul Makles <insrt.uk>",
+1 -1
View File
@@ -47,7 +47,7 @@ export type AttachmentMetadata = (
export type Attachment = {
_id: string,
tag: string,
size: string,
size: number,
filename: string,
metadata: AttachmentMetadata,
content_type: string,