summary refs log tree commit diff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
new file mode 100644
index 0000000..b6c8d73
--- /dev/null
+++ b/src/interfaces.ts
@@ -0,0 +1,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 };