Files
2025-08-20 16:41:27 +02:00

8 lines
145 B
TypeScript

export interface Paste {
id: string;
title?: string | null;
content: string;
createdAt: string;
views: number;
protected?: boolean;
}