aboutsummaryrefslogtreecommitdiff
path: root/src/types.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.d.ts')
-rw-r--r--src/types.d.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/types.d.ts b/src/types.d.ts
index a62eec8..73346ce 100644
--- a/src/types.d.ts
+++ b/src/types.d.ts
@@ -2,23 +2,4 @@ export interface Page {
prefix: string;
id: string;
}
-export interface User {
- name: string;
- avatarUrl: string;
- _id: string;
-}
-
-interface ImageData {
- url: string;
- votes: number;
-}
-
-export interface Poll {
- _id: string;
- author: User;
- contents: {
- left: ImageData;
- right: ImageData;
- };
-}