UNPKG

@datalayer/core

Version:
13 lines (12 loc) 338 B
/** * Get a cookie from the document. */ export declare function getCookie(cname: string): string | undefined; /** * Set a cookie in the document. */ export declare function setCookie(name: string, value: string, path?: string): void; /** * Set a cookie in the document. */ export declare function deleteCookie(name: string): void;