about summary refs log tree commit diff
path: root/src/lib/types.tsx
blob: a0567e6b171867ac54dc12de1f19b38f9001adbf (plain) (blame)
1
2
3
4
5
6
7
interface File {
  id: number
  user_id: string
  absolute_path: string
  contents: string
  timestamp: string
}