1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-20 03:35:30 +02:00
This commit is contained in:
syuilo
2026-04-10 19:55:13 +09:00
parent ed119dfeb8
commit 04ff23c44f
5 changed files with 46 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 djMixer = defineObject({
id: 'djMixer',
name: 'djMixer',
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 djPlayer = defineObject({
id: 'djPlayer',
name: 'djPlayer',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});