1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-16 17:55:30 +02:00
This commit is contained in:
syuilo
2026-04-08 14:38:43 +09:00
parent 970efb3440
commit 8ec7da0cf4
7 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const miPlate = defineObject({
id: 'miPlate',
name: 'Mi Plate',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const miPlateDisplayed = defineObject({
id: 'miPlateDisplayed',
name: 'Mi Plate (Displayed)',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});