mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
38 lines
954 B
TypeScript
38 lines
954 B
TypeScript
// Type definitions for simplebar.js 1.1.7
|
|
// Project: https://github.com/Grsmto/simplebar
|
|
// Definitions by: Gregor Woiwode <https://github.com/gregonnet>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
interface SimplebarOptions {
|
|
autoHide?: boolean;
|
|
wrapContent?: boolean;
|
|
}
|
|
|
|
interface JQuery {
|
|
/**
|
|
* Enables simplebar on calling element.
|
|
*/
|
|
simplebar: {
|
|
/**
|
|
* Define if scrollbar should be faded out automatically
|
|
*
|
|
* @param indicator if scrollbar should be faded out automatically.
|
|
*/
|
|
(options?: SimplebarOptions): JQuery;
|
|
};
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
/**
|
|
* Enables simplebar on calling element.
|
|
*/
|
|
simplebar: {
|
|
/**
|
|
* Define if scrollbar should be faded out automatically
|
|
*
|
|
* @param indicator if scrollbar should be faded out automatically.
|
|
*/
|
|
(options?: SimplebarOptions): JQuery;
|
|
};
|
|
}
|