mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-13 22:15:41 +02:00
22 lines
349 B
TypeScript
22 lines
349 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { defineObject } from '../engine.js';
|
|
|
|
export const desk = defineObject({
|
|
id: 'desk',
|
|
name: 'Desk',
|
|
options: {
|
|
schema: {},
|
|
default: {},
|
|
},
|
|
placement: 'floor',
|
|
createInstance: () => {
|
|
return {
|
|
interactions: {},
|
|
};
|
|
},
|
|
});
|