Files
DefinitelyTyped/ladda/ladda.d.ts
T
Theodore Brown 40b08478e0 Added additional tests (from project homepage)
create() method should accept a parameter of type Element, rather than HTMLElement to work with document.querySelector()
2013-08-30 12:16:22 -05:00

36 lines
863 B
TypeScript

// Type definitions for Ladda 0.7.0
// Project: https://github.com/hakimel/Ladda
// Definitions by: Danil Flores <https://github.com/dflor003/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module Ladda {
interface ILaddaButton {
start(): ILaddaButton;
stop(): ILaddaButton;
toggle(): ILaddaButton;
setProgress(progress: number): ILaddaButton;
enable(): ILaddaButton;
disable(): ILaddaButton;
isLoading(): boolean;
}
interface ILaddaOptions {
timeout?: number;
callback?: (instance: ILaddaButton) => void;
}
function bind(target: HTMLElement, options?: ILaddaOptions): void;
function bind(cssSelector: string, options?: ILaddaOptions): void;
function create(button: Element): ILaddaButton;
function stopAll(): void;
}