aboutsummaryrefslogtreecommitdiff
path: root/src/types.d.ts
diff options
context:
space:
mode:
authorilyayudovin <46264063+ilyayudovin@users.noreply.github.com>2020-06-14 15:58:02 +0300
committerGitHub <noreply@github.com>2020-06-14 15:58:02 +0300
commit99b44bc80fa3228131a05fccb13f75ff8a46b116 (patch)
treea77bcec54244156844e245494f1ce434a12fff34 /src/types.d.ts
parent57a2ff3cfa7eae111bb8f46447198586c47425fb (diff)
parent0308460d896966a9fe5e510926f44bac112923bb (diff)
downloadwhich-ui-99b44bc80fa3228131a05fccb13f75ff8a46b116.tar.gz
Merge pull request #31 from ilyayudovin/signIn
add sing in form
Diffstat (limited to 'src/types.d.ts')
-rw-r--r--src/types.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.d.ts b/src/types.d.ts
index 6cf4fdd..31c2c74 100644
--- a/src/types.d.ts
+++ b/src/types.d.ts
@@ -1,6 +1,7 @@
export interface User {
name: string;
avatarUrl: string;
+ _id: string;
}
interface ImageData {
url: string;
@@ -8,6 +9,7 @@ interface ImageData {
}
export interface Poll {
+ _id: string;
author: {
name: string;
avatarUrl: string;