mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
19 lines
653 B
TypeScript
19 lines
653 B
TypeScript
// Type definitions for SlickGrid ColumnPicker Control 2.1.0
|
|
// Project: https://github.com/mleibman/SlickGrid
|
|
// Definitions by: berwyn <https://github.com/berwyn>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace Slick {
|
|
export namespace Controls {
|
|
export interface SlickColumnPickerOptions {
|
|
fadeSpeed?: number;
|
|
}
|
|
|
|
export class ColumnPicker<T extends Slick.SlickData> {
|
|
constructor(columns: Slick.Column<T>[], grid: Slick.Grid<T>, options: SlickColumnPickerOptions);
|
|
getAllColumns(): Slick.Column<T>[];
|
|
destroy(): void;
|
|
}
|
|
}
|
|
}
|