From c77be12631e788b237781dadde515e9c3783bdfd Mon Sep 17 00:00:00 2001 From: cheersmas Date: Wed, 13 Dec 2023 16:58:16 +0530 Subject: [PATCH] export types --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 = {},