mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
503 B
TypeScript
16 lines
503 B
TypeScript
// Type definitions for vue-chartkick 0.5
|
|
// Project: https://github.com/ankane/vue-chartkick#readme
|
|
// Definitions by: CNS Media <https://github.com/cnsmedia>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import { PluginObject } from "vue";
|
|
|
|
interface VueChartkickPlugin extends PluginObject<{ adapter: any }> {
|
|
version: string;
|
|
addAdapter: (library: any) => void;
|
|
}
|
|
|
|
declare const VueChartkick: VueChartkickPlugin;
|
|
export default VueChartkick;
|