about summary refs log tree commit diff
path: root/src/lib/types.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/types.tsx')
-rw-r--r--src/lib/types.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/types.tsx b/src/lib/types.tsx
new file mode 100644
index 0000000..8e0fda4
--- /dev/null
+++ b/src/lib/types.tsx
@@ -0,0 +1,7 @@
+type File = {
+  id: number
+  user_id: string
+  absolute_path: string
+  contents: string
+  timestamp: string
+}