forked from mirrors/misskey
refactor(frontend): フロントエンドの型エラー解消(途中まで) (#16539)
* fix(frontend): FormLinkをボタンとして使用した際にエラーが出る問題を修正 * refactor(frontend): フロントエンドの型エラー解消 * remove unused ts-expect-error * migrate * remove unrelated changes * fix lint * more type fixes
This commit is contained in:
@@ -6049,7 +6049,9 @@ export interface operations {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
'application/json': components['schemas']['MeDetailed'];
|
||||
'application/json': components['schemas']['MeDetailed'] & {
|
||||
token: string;
|
||||
};
|
||||
};
|
||||
};
|
||||
/** @description Client error */
|
||||
@@ -35333,7 +35335,10 @@ export interface operations {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
'application/json': components['schemas']['UserList'];
|
||||
'application/json': components['schemas']['UserList'] & {
|
||||
likedCount?: number;
|
||||
isLiked?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
/** @description Client error */
|
||||
|
||||
@@ -206,6 +206,14 @@ export type Channels = {
|
||||
};
|
||||
receives: null;
|
||||
};
|
||||
reversi: {
|
||||
params: null;
|
||||
events: {
|
||||
matched: (payload: { game: ReversiGameDetailed }) => void;
|
||||
invited: (payload: { user: User }) => void;
|
||||
};
|
||||
receives: null;
|
||||
};
|
||||
reversiGame: {
|
||||
params: {
|
||||
gameId: string;
|
||||
|
||||
Reference in New Issue
Block a user