feature: return raw bytes as file size

This commit is contained in:
thomasabishop 2024-11-11 14:47:59 +00:00
parent 13cc17eed4
commit 725adf65cc

View file

@ -4,7 +4,7 @@ from typing import List, TypedDict
class Entry(TypedDict): class Entry(TypedDict):
title: str title: str
last_modified: str last_modified: str
size: str size: int
tags: List[str] tags: List[str]
links: List[str] links: List[str]
body: str body: str