-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
25 lines (20 loc) · 992 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// @see: https://www.typescriptlang.org/docs/handbook/declaration-files/templates/module-d-ts.html
// Type definitions for vue-inline-editable
// Project: Additional UI elements for VueJS
// Definitions by: mihnsen <https://github.com/mihnsen/>
/*~ This is the module template file. You should rename it to index.d.ts
*~ and place it in a folder with the same name as the module.
*~ For example, if you were writing a file for "super-greeter", this
*~ file should be 'super-greeter/index.d.ts'
*/
/*~ If this module is a UMD module that exposes a global variable 'myLib' when
*~ loaded outside a module loader environment, declare that global here.
*~ Otherwise, delete this declaration.
*/
import Vue, { PluginObject, PluginFunction } from 'vue'
export default class VueInlineEditablePlugin implements PluginObject<{}>{
[key: string]: any
install: PluginFunction<{}>
static install(pVue: typeof Vue, options?:{} | undefined): void
}
export const VueInlineEditable: object;