1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-24 20:54:13 +02:00
This commit is contained in:
syuilo
2026-03-02 10:46:16 +09:00
parent 36438e85d1
commit 3f0c4b0577
9 changed files with 23 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 envelope = defineObject({
id: 'envelope',
name: 'Envelope',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});