@webshrine/vue
Advanced tools
Comparing version 0.0.16 to 0.0.17
{ | ||
"name": "@webshrine/vue", | ||
"type": "module", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"description": "", | ||
@@ -24,4 +24,4 @@ "author": "", | ||
"@vueuse/core": "^12.0.0", | ||
"@webshrine/stdlib": "0.0.16", | ||
"@webshrine/stdtyp": "0.0.16", | ||
"@webshrine/stdlib": "0.0.17", | ||
"@webshrine/stdtyp": "0.0.17", | ||
"vue": "^3.5.13" | ||
@@ -28,0 +28,0 @@ }, |
@@ -8,3 +8,3 @@ import type { AnyArrayOptional } from '@webshrine/stdtyp' | ||
/** @category Definers */ | ||
interface DefineComposableOptions { | ||
export interface DefineComposableOptions { | ||
@@ -11,0 +11,0 @@ /** Flattens refs in the result of the setup, keeping reactivity */ |
@@ -5,3 +5,3 @@ import type { ComposableSetup } from './helpers' | ||
/** | ||
* | ||
* Returns module creator... | ||
*/ | ||
@@ -11,4 +11,3 @@ export const defineModule = <T extends ComposableSetup>(setup: T) => defineComposable({ | ||
flat: true, | ||
readonly: true, | ||
setup, | ||
}) |
export * from './defineComposable' | ||
export * from './defineModule' |
13564