1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-27 00:14:12 +02:00
This commit is contained in:
syuilo
2026-02-15 20:43:25 +09:00
parent d8d4b230b0
commit be67e75ef9
34 changed files with 789 additions and 310 deletions

View File

@@ -3,10 +3,68 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { aircon } from './objects/aircon.js';
import { aquarium } from './objects/aquarium.js';
import { banknote } from './objects/banknote.js';
import { bed } from './objects/bed.js';
import { blind } from './objects/blind.js';
import { book } from './objects/book.js';
import { cardboardBox } from './objects/cardboardBox.js';
import { ceilingFanLight } from './objects/ceilingFanLight.js';
import { chair } from './objects/chair.js';
import { colorBox } from './objects/colorBox.js';
import { cupNoodle } from './objects/cupNoodle.js';
import { desk } from './objects/desk.js';
import { energyDrink } from './objects/energyDrink.js';
import { facialTissue } from './objects/facialTissue.js';
import { keyboard } from './objects/keyboard.js';
import { lavaLamp } from './objects/lavaLamp.js';
import { milk } from './objects/milk.js';
import { monitor } from './objects/monitor.js';
import { monstera } from './objects/monstera.js';
import { mug } from './objects/mug.js';
import { openedCardboardBox } from './objects/openedCardboardBox.js';
import { plant } from './objects/plant.js';
import { plant2 } from './objects/plant2.js';
import { powerStrip } from './objects/powerStrip.js';
import { roundRug } from './objects/roundRug.js';
import { snakeplant } from './objects/snakeplant.js';
import { steelRack } from './objects/steelRack.js';
import { tv } from './objects/tv.js';
import { wallClock } from './objects/wallClock.js';
import { woodSoundAbsorbingPanel } from './objects/woodSoundAbsorbingPanel.js';
export const OBJECT_DEFS = [
aircon,
aquarium,
banknote,
bed,
blind,
book,
cardboardBox,
ceilingFanLight,
chair,
colorBox,
cupNoodle,
desk,
energyDrink,
facialTissue,
keyboard,
lavaLamp,
milk,
monitor,
monstera,
mug,
openedCardboardBox,
plant,
plant2,
powerStrip,
roundRug,
snakeplant,
steelRack,
tv,
wallClock,
woodSoundAbsorbingPanel,
];
export function getObjectDef(type: string): typeof OBJECT_DEFS[number] {