You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
592 B

import Vue = require("../index");
declare module "../vue" {
// add instance property and method
interface Vue {
$instanceProperty: string;
$instanceMethod(): void;
}
// add static property and method
namespace Vue {
const staticProperty: string;
function staticMethod(): void;
}
}
// augment ComponentOptions
declare module "../options" {
interface ComponentOptions<V extends Vue> {
foo?: string;
}
}
const vm = new Vue({
data: {
a: true
},
foo: "foo"
});
vm.$instanceProperty;
vm.$instanceMethod();
Vue.staticProperty;
Vue.staticMethod();