mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
16 lines
519 B
TypeScript
16 lines
519 B
TypeScript
import { nature } from './sounds/nature';
|
|
import { rain } from './sounds/rain';
|
|
import { animals } from './sounds/animals';
|
|
import { urban } from './sounds/urban';
|
|
import { places } from './sounds/places';
|
|
import { transport } from './sounds/transport';
|
|
import { things } from './sounds/things';
|
|
import { noise } from './sounds/noise';
|
|
|
|
import type { Categories } from './types';
|
|
|
|
export const sounds: {
|
|
categories: Categories;
|
|
} = {
|
|
categories: [nature, rain, animals, urban, places, transport, things, noise],
|
|
};
|