@datalayer/core
Version:
**Datalayer Core**
13 lines (12 loc) • 338 B
TypeScript
/**
* 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;