Add type definitions

This commit is contained in:
hmsk
2017-12-17 17:21:27 -08:00
parent 9404f0076c
commit af4afc926e
4 changed files with 51 additions and 0 deletions

16
types/test/index.ts Normal file
View File

@@ -0,0 +1,16 @@
import Vue from "vue";
import VueJSModal, { VueJSModalOptions } from "../index";
Vue.use(VueJSModal);
Vue.use<VueJSModalOptions>(VueJSModal, {
componentName: "another-modal-name",
dialog: false
});
const vm = new Vue({
template: `<vue-modal name="awesome-modal"></vue-modal>`
}).$mount("#app");
vm.$modal.show("awesome-modal");
vm.$modal.hide("awesome-modal", { customeEvent: "customEventParam" });
vm.$modal.toggle("awesome-modal");

13
types/test/tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"strict": true,
"noEmit": true
},
"include": [
"*.ts",
"../index.d.ts"
]
}