UNPKG

vue-composable-tester

Version:

Utility to test composition api functions for Vue.js

9 lines (8 loc) 232 B
export interface MountResult<R> { result: R; unmount: () => void; } export interface MountOptions { provider?: () => void; } export declare function mount<R>(composable: () => R, options?: MountOptions): MountResult<R>;