@mhmdaljefri/vue-datagrid
Version:
Vue data grid spreadsheet
13 lines (12 loc) • 356 B
TypeScript
import Vue, { CreateElement } from 'vue';
declare type WatchFunction = (this: Vue, newVal: any, oldVal: any) => void;
declare type WatchResult = {
[prop: string]: WatchFunction;
};
declare const _default: {
name: string;
props: string[];
watch: WatchResult;
render(this: Vue, h: CreateElement): JSX.Element;
};
export default _default;