mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Restructure files and add missing declarations * Add JQuery declarations * Restructure tests * Add carousel tests * Add more tests and missing JQuery declarations * Add waves declaration and a test * Add static init methods and tests * allow jquery and cash object to be passed to init * Remove redundant reference * Clean up * Clean up * Clean up and add tests * Clean up and add tests
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
/// <reference path="./common.d.ts" />
|
|
|
|
declare namespace M {
|
|
class Toast extends ComponentBase<ToastOptions> {
|
|
/**
|
|
* Get Instance
|
|
*/
|
|
static getInstance(elem: Element): Toast;
|
|
|
|
/**
|
|
* Describes the current pan state of the Toast.
|
|
*/
|
|
panning: boolean;
|
|
|
|
/**
|
|
* The remaining amount of time in ms that the toast will stay before dismissal.
|
|
*/
|
|
timeRemaining: number;
|
|
|
|
/**
|
|
* remove a specific toast
|
|
*/
|
|
dismiss(): void;
|
|
|
|
/**
|
|
* dismiss all toasts
|
|
*/
|
|
static dismissAll(): void;
|
|
}
|
|
|
|
interface ToastOptions {
|
|
/**
|
|
* The HTML content of the Toast.
|
|
*/
|
|
html: string;
|
|
|
|
/**
|
|
* Length in ms the Toast stays before dismissal.
|
|
* @default 4000
|
|
*/
|
|
displayLength: number;
|
|
|
|
/**
|
|
* Transition in duration in milliseconds.
|
|
* @default 300
|
|
*/
|
|
inDuration: number;
|
|
|
|
/**
|
|
* Transition out duration in milliseconds.
|
|
* @default 375
|
|
*/
|
|
outDuration: number;
|
|
|
|
/**
|
|
* Classes to be added to the toast element.
|
|
*/
|
|
classes: string;
|
|
|
|
/**
|
|
* Callback function called when toast is dismissed.
|
|
*/
|
|
completeCallback: () => void;
|
|
|
|
/**
|
|
* The percentage of the toast's width it takes for a drag to dismiss a Toast.
|
|
* @default 0.8
|
|
*/
|
|
activationPercent: number;
|
|
}
|
|
|
|
/**
|
|
* Create a toast
|
|
*/
|
|
function toast(options: Partial<ToastOptions>): Toast;
|
|
}
|