aboutsummaryrefslogtreecommitdiff
path: root/src/types.d.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-24 00:52:26 +0300
committereug-vs <eug-vs@keemail.me>2020-06-24 00:57:29 +0300
commitfbdaa40e7ce585b65038835c05a283cec6f28d0e (patch)
treef7cf1593109a21841a93d237b1e28cb7735637d0 /src/types.d.ts
parent8930046d41841cba6cf368076b86e26088807848 (diff)
downloadwhich-ui-fbdaa40e7ce585b65038835c05a283cec6f28d0e.tar.gz
chore: migrate to which-types@1.3.1
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;
- };
-}