Fix pnpm build

This commit is contained in:
UltraLionFr
2025-08-20 16:41:27 +02:00
parent 3de3e6f35a
commit 9730e21999
16 changed files with 134 additions and 83 deletions
+8
View File
@@ -0,0 +1,8 @@
export interface Paste {
id: string;
title?: string | null;
content: string;
createdAt: string;
views: number;
protected?: boolean;
}