about summary refs log tree commit diff
path: root/src/lib
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-06-23 10:32:33 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-06-23 10:32:33 +0200
commita34b1ef276da4a16b5e7ff9860c02831d7e281b7 (patch)
treebbf6b06060f013d8c8c088a67c20b8fe04c8a079 /src/lib
parentMisc: Use relative path for site icon (diff)
downloadfs-tracer-frontend-a34b1ef276da4a16b5e7ff9860c02831d7e281b7.tar.gz
fs-tracer-frontend-a34b1ef276da4a16b5e7ff9860c02831d7e281b7.tar.bz2
fs-tracer-frontend-a34b1ef276da4a16b5e7ff9860c02831d7e281b7.zip
Misc: Move type declaration to special folder
Diffstat (limited to 'src/lib')
-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
+}