diff options
author | ilyayudovin <46264063+ilyayudovin@users.noreply.github.com> | 2020-06-14 15:58:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 15:58:02 +0300 |
commit | 99b44bc80fa3228131a05fccb13f75ff8a46b116 (patch) | |
tree | a77bcec54244156844e245494f1ce434a12fff34 /src/types.d.ts | |
parent | 57a2ff3cfa7eae111bb8f46447198586c47425fb (diff) | |
parent | 0308460d896966a9fe5e510926f44bac112923bb (diff) | |
download | which-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.ts | 2 |
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; |