File size: 357 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
export type User = {
name: string;
picture: string;
sub: string;
email?: string;
};
export type Comment = {
id: string;
created_at: number;
url: string;
text: string;
user: User;
};
export type Post = {
slug?: string;
title?: string;
author?: string;
date?: Date;
content?: string;
excerpt?: string;
[key: string]: any;
};
|