hcode-core
Advanced tools
Comparing version 0.0.18 to 0.0.19
import { AnyObject } from '../../interfaces/anyObject'; | ||
export declare function getCookies(cookies: string | null): AnyObject; | ||
export declare function getCookies(cookies: string | undefined): AnyObject; |
{ | ||
"name": "hcode-core", | ||
"version": "0.0.18", | ||
"version": "0.0.19", | ||
"description": "Hcode Core", | ||
@@ -5,0 +5,0 @@ "types": "typings.d.ts", |
import { AnyObject } from '../../interfaces/anyObject'; | ||
export function getCookies(cookies: string | null): AnyObject { | ||
export function getCookies(cookies: string | undefined): AnyObject { | ||
if (!cookies) { | ||
@@ -5,0 +5,0 @@ return {}; |
@@ -164,3 +164,3 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido. | ||
export function getCookies(cookies: string | null): AnyObject; | ||
export function getCookies(cookies: string | undefined): AnyObject; | ||
@@ -167,0 +167,0 @@ export function userPhotoPath(path: string | undefined): string; |
Sorry, the diff of this file is not supported yet
34921