aboutsummaryrefslogtreecommitdiff
path: root/models/votes/vote.schema.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-28 18:56:14 +0300
committereug-vs <eug-vs@keemail.me>2020-06-28 18:56:14 +0300
commit00387d9ad38049db555cad7b5cb375167a108a6e (patch)
treefba5273a22bd7a19e797e42e8c803843960e81bf /models/votes/vote.schema.ts
parentc3438eb4a7187773e2736dea765bb8281f7edf0e (diff)
downloadwhich-api-00387d9ad38049db555cad7b5cb375167a108a6e.tar.gz
style: fix linting errors
Diffstat (limited to 'models/votes/vote.schema.ts')
-rw-r--r--models/votes/vote.schema.ts2
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: {