mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-14 00:35:52 +02:00
22 lines
356 B
TypeScript
22 lines
356 B
TypeScript
/*
|
|
* 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: {},
|
|
};
|
|
},
|
|
});
|