mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
// Type definitions for jQuery UI Layout Plug-in
|
|
// Project: http://layout.jquery-dev.net/
|
|
// Definitions by: Steve Fenton <https://github.com/Steve-Fenton>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../jquery/jquery.d.ts"/>
|
|
/// <reference path="../jqueryui/jqueryui.d.ts"/>
|
|
|
|
interface JQueryLayoutOptions {
|
|
north: any;
|
|
east: any;
|
|
south: any;
|
|
west: any;
|
|
}
|
|
|
|
interface JQueryLayout {
|
|
panes: any;
|
|
options: JQueryLayoutOptions;
|
|
state: any;
|
|
|
|
toggle(pane: any): any;
|
|
open(pane: any): any;
|
|
close(pane: any): any;
|
|
show(pane: any, openPane?: boolean): any;
|
|
hide(pane: any): any;
|
|
sizePane(pane: any, sizeInPixels: number): any;
|
|
resizeContent(pane: any): any;
|
|
resizeAll(): any;
|
|
|
|
addToggleBtn(selector: string, pane: any): any;
|
|
addCloseBtn(selector: string, pane: any): any;
|
|
addOpenBtn(selector: string, pane: any): any;
|
|
addPinBtn(selector: string, pane: any): any;
|
|
allowOverflow(elemOrPane: any): any;
|
|
resetOverflow(elemOrPane: any): any;
|
|
}
|
|
|
|
interface JQuery {
|
|
layout(options?: JQueryLayoutOptions): JQueryLayout;
|
|
}
|