Files

8 lines
145 B
TypeScript
Raw Permalink Normal View History

2025-08-20 16:41:27 +02:00
export interface Paste {
id: string;
title?: string | null;
content: string;
createdAt: string;
views: number;
protected?: boolean;
}