1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-18 18:55:29 +02:00
This commit is contained in:
syuilo
2026-02-17 16:00:31 +09:00
parent af560802b3
commit 9475e6151f
7 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const tabletopCalendar = defineObject({
id: 'tabletopCalendar',
defaultOptions: {},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});