mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
Get export and tests working
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import {ISpinnerService} from 'angular-spinner';
|
||||
import {ISpinnerService} from './angular-spinner';
|
||||
|
||||
var myApp = angular.module('testModule');
|
||||
|
||||
|
||||
8
angular-spinner/angular-spinner.d.ts
vendored
8
angular-spinner/angular-spinner.d.ts
vendored
@@ -6,20 +6,20 @@
|
||||
/// <reference path="../angularjs/angular.d.ts" />
|
||||
|
||||
/**
|
||||
* SpinnerService
|
||||
* SpinnerService
|
||||
* see https://github.com/urish/angular-spinner
|
||||
*/
|
||||
interface ISpinnerService {
|
||||
export interface ISpinnerService {
|
||||
/**
|
||||
* Start selected spinner
|
||||
*
|
||||
*
|
||||
* @param spinner key
|
||||
*/
|
||||
spin(key: string): void;
|
||||
|
||||
/**
|
||||
* Stop selected spinner
|
||||
*
|
||||
*
|
||||
* @param spinner key
|
||||
*/
|
||||
stop(key: string): void;
|
||||
|
||||
Reference in New Issue
Block a user