mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-08-03 22:05:55 +00:00
18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { defineObjectUi } from '../defineObjectUi.js';
|
|
import type { wallClock_schema } from 'misskey-world/src/room/objects/wallClock.schema.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
export const wallClock_ui = defineObjectUi<typeof wallClock_schema>({
|
|
name: i18n.ts._miRoom._objects.wallClock,
|
|
options: {
|
|
frameMat: {
|
|
label: i18n.ts._miRoom._objects._wallClock.frameMat,
|
|
},
|
|
},
|
|
});
|