UNPKG

@smyld/vue-property-decorator

Version:

SMYLD Fork version of vue-property-decorator to port the latest version of vue-class-component

6 lines (5 loc) 254 B
import { Vue, PropOptions } from 'vue-class-component'; export declare type Constructor = { new (...args: any[]): any; }; export declare function applyMetadata(options: PropOptions | Constructor[] | Constructor, target: Vue, key: string): void;