replace internal module to namespace

This commit is contained in:
vvakame
2016-03-17 02:18:10 +09:00
parent 2f47c75835
commit 14fe4313f4
1139 changed files with 179639 additions and 179639 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ declare module "angular-cookies" {
/**
* ngCookies module (angular-cookies.js)
*/
declare module angular.cookies {
declare namespace angular.cookies {
/**
* Cookies options
@@ -22,13 +22,13 @@ declare module angular.cookies {
*/
interface ICookiesOptions {
/**
* The cookie will be available only for this path and its sub-paths.
* 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.
*/
path?: string;
/**
* The cookie will be available only for this domain and its sub-domains.
* For obvious security reasons the user agent will not accept the cookie if the
* 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.
*/
domain?: string;