1 | import { WatchOptions } from 'vue';
|
2 | /**
|
3 | * decorator of a watch function
|
4 | * @param path the path or the expression to observe
|
5 | * @param WatchOption
|
6 | * @return MethodDecorator
|
7 | */
|
8 | export declare function Watch(path: string, options?: WatchOptions): import("vue-class-component").VueDecorator;
|