forked from daren.hsu/line_push
8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
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)[];
|
|
};
|