mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Type definitions for vue2-hammer 2.1 * Removed unused files (LICENSE & README.md) * Added vue2-hammer-tests.ts * Added vue2-hammer-tests.ts also to tsconfig.json * Removed vue2-hammer as dependency from package.json * Removed trailing whitespace in vue2-hammer-tests.ts
13 lines
394 B
TypeScript
13 lines
394 B
TypeScript
// Type definitions for vue2-hammer 2.1
|
|
// Project: https://github.com/bsdfzzzy/vue2-hammer
|
|
// Definitions by: Peter Tandler <https://github.com/ptandler>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.2
|
|
|
|
import { PluginObject } from "vue";
|
|
|
|
export interface VueHammer extends PluginObject<any> {
|
|
config: any;
|
|
}
|
|
export const VueHammer: VueHammer;
|