UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

18 lines (12 loc) 381 B
import Core from '../../core'; import { BasePlugin } from '../base'; export type Direction = 'vertical' | 'horizontal'; export interface DetailedSettings { autoInsertRow?: boolean; direction?: Direction; } export type Settings = boolean | Direction | DetailedSettings; export class Autofill extends BasePlugin { constructor(hotInstance: Core); isEnabled(): boolean; }