DefinitelyTyped/angular-spinner/index.d.ts
2016-11-30 13:54:18 -08:00

25 lines
558 B
TypeScript

// Type definitions for angular-spinner.js 0.5.1
// Project: https://github.com/urish/angular-spinner
// Definitions by: Marcin Biegała <https://github.com/Biegal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* SpinnerService
* see https://github.com/urish/angular-spinner
*/
declare interface ISpinnerService {
/**
* Start selected spinner
*
* @param spinner key
*/
spin(key: string): void;
/**
* Stop selected spinner
*
* @param spinner key
*/
stop(key: string): void;
}