Fixing test failures

This commit is contained in:
Raghav Katyal
2016-06-27 17:40:37 -07:00
parent 6090565a80
commit 89cb02de7d
72 changed files with 3779 additions and 3672 deletions

View File

@@ -5,18 +5,22 @@
/// <reference types="angularjs"/>
declare namespace angular.localStorage {
interface ILocalStorageService {
set(key: string, value: any): any;
get(key: string): any;
remove(key: string): boolean;
clearAll(): void;
import * as angular from 'angularjs';
bind($scope: ng.IScope, key: string, opts?: {
defaultValue?: any;
storeName?: string;
}): any;
unbind($scope: ng.IScope, key: string, storeName?: string): void;
declare module 'angularjs' {
export namespace localStorage {
interface ILocalStorageService {
set(key: string, value: any): any;
get(key: string): any;
remove(key: string): boolean;
clearAll(): void;
bind($scope: ng.IScope, key: string, opts?: {
defaultValue?: any;
storeName?: string;
}): any;
unbind($scope: ng.IScope, key: string, storeName?: string): void;
}
}
}