Skip to content

Commit 4910d45

Browse files
committed
fix ngkookies/ngkookies.d.ts header
1 parent f261d81 commit 4910d45

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

ngkookies/ngkookies.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
// Type definitions for ngKookes 0.2.0
22
// Project: https://github.com/voronianski/ngKookies
3-
// Definitions by: Martin McWhorter https://github.com/martinmcwhorter
3+
// Definitions by: Martin McWhorter <https://github.com/martinmcwhorter>
44
// Definitions: https://github.com/borisyankov/DefinitelyTyped
55

66
declare module angular.kookies {
7-
7+
88
type Options = {
9-
expires?: number|Date,
9+
expires?: number|Date,
1010
path?: string,
1111
domain?: string,
1212
secure?: boolean
1313
};
14-
14+
1515
interface IKookiesService {
16-
16+
1717
set(name: string, value: string, optopns?: Options): void;
1818
get(): any;
1919
get(name: string): any;
2020
get(name:string, converter: any): any;
2121
get<T>(name:string, converter: any): T;
22-
remove(name: string, options?: Options): boolean;
22+
remove(name: string, options?: Options): boolean;
2323
}
24-
25-
type Config = { raw?: boolean, json?: boolean }
26-
24+
25+
type Config = { raw?: boolean, json?: boolean }
26+
2727
interface IKookiesProvider {
28-
28+
2929
config: Config;
3030
setConfig(config: Config): void;
3131
defaults: Options;
3232
setDefaults(options: Options): void;
3333
}
34-
}
34+
}

0 commit comments

Comments
 (0)