Open
Description
Below is some unpolished work for the typescript definition of this library.
I am not sure how to contribute to the typescript @types
npm registry, or how to write it specifically for publishing. Currently, the following code works for my use:
filename: vue-file-import.d.ts
Last updated: September 24, 2020
import Vue from "vue";
declare module "*.vue" {
import Vue from "vue";
export default Vue;
}
declare module 'vue/types/vue' {
// Global properties can be declared
// on the `VueConstructor` interface
import VuejsDialog from 'vuejs-dialog';
interface DialogOptions {
html?: boolean,
loader?: boolean,
reverse?: boolean,
okText?: string,
cancelText?: string,
animation?: ('zoom'|'bounce'|'fade'),
type?: ('basic'|'soft'|'hard'),
verification?: string,
verificationHelp?: string,
clicksCount?: number,
backdropClose?: true,
customClass?: string
}
interface DialogResult {
close?: ()=>void,
loading?: ()=>void,
node?: DOMElement,
data?: any
}
interface Vue {
$dialog: {
alert(message: string, options?: DialogOptions): DialogResult
confirm(message: string, options?: DialogOptions): DialogResult
},
}
}
Dumping a set of resources here for providing typescript definitions:
https://www.detroitlabs.com/blog/2018/02/28/adding-custom-type-definitions-to-a-third-party-library/