FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DefinitelyTyped/angularLocalStorage/angularLocalStorage.d.ts at master · the41/DefinitelyTyped · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
the41
/
DefinitelyTyped
Public
forked from
DefinitelyTyped/DefinitelyTyped
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
DefinitelyTyped
/
angularLocalStorage
/
angularLocalStorage.d.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (18 loc) · 674 Bytes
Breadcrumbs
DefinitelyTyped
/
angularLocalStorage
/
angularLocalStorage.d.ts
Copy path
File metadata and controls
22 lines (18 loc) · 674 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Type definitions for AngularLocalStorage 0.1.7
// Project: https://github.com/agrublev/angularLocalStorage
// Definitions by: Horiuchi_H <https://github.com/horiuchi/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../angularjs/angular.d.ts"/>
declare
module
angular
.
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
;
}
}
Back
|
FazBrowse Home
|
New Git URL