/** * egjs-grid * Copyright (c) 2021-present NAVER Corp. * MIT license */ import Grid, { GridFunction, GridMethods } from "@egjs/grid"; export type VueGridProps = T["defaultOptions"] & { tag?: string; }; export interface VueGridInterface extends GridMethods> { $el: HTMLElement; $_grid: Grid; $props: VueGridProps; }