parent
3a035c481e
commit
68ee9a008e
10 changed files with 20 additions and 20 deletions
|
@ -27,11 +27,11 @@ export interface IReversiGame {
|
|||
isEnded: boolean;
|
||||
winnerId: mongo.ObjectID;
|
||||
surrendered: mongo.ObjectID;
|
||||
logs: Array<{
|
||||
logs: {
|
||||
at: Date;
|
||||
color: boolean;
|
||||
pos: number;
|
||||
}>;
|
||||
}[];
|
||||
settings: {
|
||||
map: string[];
|
||||
bw: string | number;
|
||||
|
|
|
@ -52,11 +52,11 @@ export type INote = {
|
|||
repliesCount: number;
|
||||
reactionCounts: any;
|
||||
mentions: mongo.ObjectID[];
|
||||
mentionedRemoteUsers: Array<{
|
||||
mentionedRemoteUsers: {
|
||||
uri: string;
|
||||
username: string;
|
||||
host: string;
|
||||
}>;
|
||||
}[];
|
||||
|
||||
/**
|
||||
* public ... 公開
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue