@clerk/chrome-extension
Version:
Clerk SDK for Chrome extensions
8 lines • 321 B
TypeScript
import browser from 'webextension-polyfill';
export type FormattedUrl = `http${string}`;
export type GetClientCookieParams = {
name: string;
url: string;
};
export declare function getClientCookie({ url, name }: GetClientCookieParams): Promise<browser.Cookies.Cookie | null>;
//# sourceMappingURL=cookies.d.ts.map