UNPKG

@vert/core

Version:

Library to build OOP applications which are based on Vue.

8 lines (7 loc) 264 B
import Vue, { ComponentOptions } from 'vue'; export declare type VueClass<V> = { new (...args: any[]): V & Vue; } & typeof Vue; export declare type DecoratedClass = VueClass<Vue> & { __decorators__?: ((options: ComponentOptions<Vue>) => void)[]; };