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