diff --git a/src/types/api/dir.ts b/src/types/api/dir.ts deleted file mode 100644 index a84606ca..00000000 --- a/src/types/api/dir.ts +++ /dev/null @@ -1,18 +0,0 @@ -export type DirectoryRes = { - name: string; - path: string; - sha: string; - size: number; - url: string; - html_url: string; - git_url: string; - download_url: null; - type: string; - _links: Links; -}; - -export type Links = { - self: string; - git: string; - html: string; -};