@devkitvue/dataview
Version:
Devkit Base Components is a Vue plugin offering a collection of reusable, headless components designed to streamline your Vue.js development workflow. Built for flexibility and maintainability, this library gives you complete control over styling and beha
9 lines (8 loc) • 359 B
TypeScript
import { InjectionKey, Plugin } from 'vue';
export * from './app/dataview';
export declare const ApiClientKey: InjectionKey<Record<string, Function>>;
export type DevkitDataViewConfig<TApi extends Record<string, Function>> = {
apiClient: TApi;
};
declare const DevkitDataViewPlugin: Plugin<DevkitDataViewConfig<any>>;
export default DevkitDataViewPlugin;