chad/client/app/composables/use-preferences.ts
Никита Круглицкий ec67be8aa6
All checks were successful
Deploy / deploy (push) Successful in 4m32s
куча говна
2025-10-20 00:10:13 +06:00

12 lines
229 B
TypeScript

import { createGlobalState } from '@vueuse/core'
export const usePreferences = createGlobalState(() => {
const audioDevice = shallowRef()
const videoDevice = shallowRef()
return {
audioDevice,
videoDevice,
}
})