UNPKG

universal-fs

Version:

Allows a client or server to access the file system in the current codebase or a different one.

8 lines (7 loc) 205 B
/** * Find a cookie by name * @param cookieName - The name of the cookie * @returns A cookie string or null */ declare const getCookie: (cookieName: string) => string | null; export default getCookie;