File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,19 @@ declare module angular.cookies {
22
22
*/
23
23
interface ICookiesOptions {
24
24
/**
25
- * The cookie will be available only for this path and its sub-paths. By default, this would be the URL that appears in your base tag.
25
+ * The cookie will be available only for this path and its sub-paths.
26
+ * By default, this would be the URL that appears in your base tag.
26
27
*/
27
28
path ?: string ;
28
29
/**
29
- * The cookie will be available only for this domain and its sub-domains.
30
- * For obvious security reasons the user agent will not accept the cookie if the current domain is not a sub domain or equals to the requested domain.
30
+ * The cookie will be available only for this domain and its sub-domains.
31
+ * For obvious security reasons the user agent will not accept the cookie if the
32
+ * current domain is not a sub domain or equals to the requested domain.
31
33
*/
32
34
domain ?: string ;
33
35
/**
34
- * String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" or a Date object indicating the exact date/time this cookie will expire.
36
+ * String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" or a Date object
37
+ * indicating the exact date/time this cookie will expire.
35
38
*/
36
39
expires ?: string | Date ;
37
40
/**
You can’t perform that action at this time.
0 commit comments