mirror of
https://github.com/remvze/moodist.git
synced 2026-02-28 00:53:13 +08:00
28 lines
616 B
TypeScript
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,
|
|
],
|
|
};
|