2.4.3 • Published 8 months ago

@types/datatables.net-autofill v2.4.3

Weekly downloads
2,860
License
MIT
Repository
-
Last release
8 months 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.1

8 months ago

2.4.3

8 months ago

2.4.2

8 months ago

2.4.0

1 year ago

2.2.3

2 years ago

2.2.2

2 years ago

2.2.4

2 years ago

2.2.1

4 years ago

2.2.0

7 years ago