diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-28 18:56:14 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-28 18:56:14 +0300 |
commit | 00387d9ad38049db555cad7b5cb375167a108a6e (patch) | |
tree | fba5273a22bd7a19e797e42e8c803843960e81bf /models/votes | |
parent | c3438eb4a7187773e2736dea765bb8281f7edf0e (diff) | |
download | which-api-00387d9ad38049db555cad7b5cb375167a108a6e.tar.gz |
style: fix linting errors
Diffstat (limited to 'models/votes')
-rw-r--r-- | models/votes/vote.schema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/votes/vote.schema.ts b/models/votes/vote.schema.ts index d8128b3..72b196d 100644 --- a/models/votes/vote.schema.ts +++ b/models/votes/vote.schema.ts @@ -1,7 +1,7 @@ import { Document, Schema, Types } from 'mongoose'; import { Vote } from 'which-types'; -export interface VoteSchema extends Document, Omit<Vote, '_id'> {}; +export interface VoteSchema extends Document, Omit<Vote, '_id'> {} export const voteSchema = new Schema({ authorId: { |