Files
misskey/packages/frontend/src/world/room/objects/tabletopFlag.ui.ts
T
syuilo 9485b3fba9 wip
2026-05-26 09:30:06 +09:00

18 lines
506 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObjectUi } from '../defineObjectUi.js';
import type { tabletopFlag_schema } from 'misskey-world/src/room/objects/tabletopFlag.schema.js';
import { i18n } from '@/i18n.js';
export const tabletopFlag_ui = defineObjectUi<typeof tabletopFlag_schema>({
name: i18n.ts._miRoom._objects.tabletopFlag,
options: {
image: {
label: i18n.ts._miRoom._objects._tabletopFlag.image,
},
},
});