summaryrefslogtreecommitdiff
path: root/packages/misskey-js/src
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2026-01-14 14:02:50 +0900
committerGitHub <noreply@github.com>2026-01-14 14:02:50 +0900
commitb941c896aa5512240de9121a1850d55aa5f8b68b (patch)
tree5d96055387b458f5295d791cc00fd5abf14b1752 /packages/misskey-js/src
parentBump version to 2026.1.0-beta.0 (diff)
downloadmisskey-b941c896aa5512240de9121a1850d55aa5f8b68b.tar.gz
misskey-b941c896aa5512240de9121a1850d55aa5f8b68b.tar.bz2
misskey-b941c896aa5512240de9121a1850d55aa5f8b68b.zip
refactor(frontend): MkRadiosの指定をpropsから行うように (#16597)
* refactor(frontend): MkRadiosの指定をpropsから行うように * spdx * fix lint * fix: mkradiosを動的slotsに対応させる * fix: remove comment [ci skip] * fix lint * fix lint * migrate * rename * fix * fix * fix types * remove unused imports * fix * wip --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/misskey-js/src')
-rw-r--r--packages/misskey-js/src/autogen/types.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/misskey-js/src/autogen/types.ts b/packages/misskey-js/src/autogen/types.ts
index 5d14facfb3..dde55e06a0 100644
--- a/packages/misskey-js/src/autogen/types.ts
+++ b/packages/misskey-js/src/autogen/types.ts
@@ -5373,7 +5373,8 @@ export type components = {
/** Format: id */
timeoutUserId: string | null;
black: number | null;
- bw: string;
+ /** @enum {string} */
+ bw: 'random' | '1' | '2';
noIrregularRules: boolean;
isLlotheo: boolean;
canPutEverywhere: boolean;
@@ -5409,7 +5410,8 @@ export type components = {
/** Format: id */
timeoutUserId: string | null;
black: number | null;
- bw: string;
+ /** @enum {string} */
+ bw: 'random' | '1' | '2';
noIrregularRules: boolean;
isLlotheo: boolean;
canPutEverywhere: boolean;