Files
moodist/src/data/sounds.ts
2024-02-01 20:16:47 +03:30

28 lines
616 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 { binaural } from './sounds/binaural';
import type { Categories } from './types';
export const sounds: {
categories: Categories;
} = {
categories: [
nature,
rain,
animals,
urban,
places,
transport,
things,
noise,
binaural,
],
};