fix type errors

This commit is contained in:
syuilo
2022-09-24 14:45:44 +09:00
parent aa3ca438a2
commit dabe5bf7e9
4 changed files with 24 additions and 42 deletions

View File

@@ -5,7 +5,7 @@ import type { User } from '@/models/entities/User.js';
type NoteLike = {
userId: Note['userId'];
text: Note['text'];
cw: Note['cw'];
cw?: Note['cw'];
};
type UserLike = {