From 481bb7bf4f36d79126a66d56c442fd1dfa176e96 Mon Sep 17 00:00:00 2001 From: 0tuedon <90271995+0tuedon@users.noreply.github.com> Date: Tue, 19 Sep 2023 21:04:28 +0100 Subject: [PATCH] fix: removed unused api types --- src/types/api/dir.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/types/api/dir.ts 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; -};