diff --git a/src/index.ts b/src/index.ts index e6e503e..c5ad772 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,10 @@ import type { Howl } from 'howler' import { onMounted, ref, unref, watch } from 'vue-demi' import type { ComposableOptions, HowlStatic, MaybeRef, PlayFunction, PlayOptions, ReturnedValue } from './types' +export type { + ComposableOptions +} + export function useSound( url: MaybeRef, { volume = 1, playbackRate = 1, soundEnabled = true, interrupt = false, autoplay = false, onload, ...delegated }: ComposableOptions = {},