Format Code

Signed-off-by: Joe Ma <rikkaneko23@gmail.com>
This commit is contained in:
Joe Ma 2023-11-02 17:22:10 +08:00
parent 2ea3b0dd8d
commit c4b1f06177
No known key found for this signature in database
GPG key ID: 7A0ECF5F5EDC587F
7 changed files with 80 additions and 63 deletions

10
src/types.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
export interface PasteIndexEntry {
title?: string;
mime_type?: string;
last_modified: number;
size: number;
password?: string;
editable?: boolean; // Default: False (unsupported)
read_count_remain?: number;
type?: string;
}