DefinitelyTyped/types/angular-spinner/index.d.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

26 lines
585 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
// TypeScript Version: 2.3
/**
* 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;
}