UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

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;