mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-13 21:05:54 +02:00
18 lines
347 B
TypeScript
18 lines
347 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { defineObject } from '../engine.js';
|
|
|
|
export const woodSoundAbsorbingPanel = defineObject({
|
|
id: 'woodSoundAbsorbingPanel',
|
|
defaultOptions: {},
|
|
placement: 'side',
|
|
createInstance: () => {
|
|
return {
|
|
interactions: {},
|
|
};
|
|
},
|
|
});
|