summary refs log tree commit diff
path: root/src/interfaces.ts
blob: b6c8d7314ff561938ce7a36a8a7b3645ad5269e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
interface Date {
  year: string;
  month: string;
  day: string;
}

interface Post {
  date: Date;
  title: string;
  data: Object;
  file: string;
  fsRoute: string;
  route: string;
}

export { Post };