11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import {Howl, Howler} from "howler";
|
|
|
|
export type Sound = "check" | "sent";
|
|
export const playSound = (path: Sound) => {
|
|
const sound = new Howl({
|
|
src: [`audio/${path}.mp3`],
|
|
});
|
|
|
|
sound.play();
|
|
};
|