8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export interface Paste {
|
|
id: string;
|
|
title?: string | null;
|
|
content: string;
|
|
createdAt: string;
|
|
views: number;
|
|
protected?: boolean;
|
|
} |