2.4.0 • Published 27 days ago

@types/datatables.net-autofill v2.4.0

Weekly downloads
2,860
License
MIT
Repository
-
Last release
27 days ago

Installation

npm install --save @types/datatables.net-autofill

Summary

This package contains type definitions for datatables.net-autofill (https://datatables.net).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/datatables.net-autofill.

index.d.ts

// Type definitions for datatables.net-autofill 2.2
// Project: https://datatables.net
// Definitions by: Andy Ma <https://github.com/andy-maca>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.4

/// <reference types="jquery" />
/// <reference types="datatables.net"/>

declare namespace DataTables {
  interface Settings {
    /*
     * autoFill extension options
     */
    autoFill?: boolean | AutoFillSettings | undefined;
  }

  interface AutoFillSettings {
    /*
     * Always ask the end user if an action should be taken or not
     */
    alwaysAsk?: boolean | undefined;
    /*
     * Select the columns that can be auto filled
     */
    columns: string | number[];
    /*
     *
     * Initial enablement state of AutoFill
     */
    enable?: boolean | undefined;
  }
}

Additional Details

Credits

These definitions were written by Andy Ma.

2.4.0

27 days ago

2.2.3

7 months ago

2.2.2

7 months ago

2.2.4

6 months ago

2.2.1

3 years ago

2.2.0

6 years ago