UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

23 lines (22 loc) 884 B
import type { Ref } from 'vue'; import type { CookieParseOptions, CookieSerializeOptions } from 'cookie-es'; type _CookieOptions = Omit<CookieSerializeOptions & CookieParseOptions, 'decode' | 'encode'>; export interface CookieOptions<T = any> extends _CookieOptions { decode?(value: string): T; encode?(value: T): string; default?: () => T | Ref<T>; watch?: boolean | 'shallow'; readonly?: boolean; } export interface CookieRef<T> extends Ref<T> { } /** @since 3.0.0 */ export declare function useCookie<T = string | null | undefined>(name: string, _opts?: CookieOptions<T> & { readonly?: false; }): CookieRef<T>; export declare function useCookie<T = string | null | undefined>(name: string, _opts: CookieOptions<T> & { readonly: true; }): Readonly<CookieRef<T>>; /** @since 3.10.0 */ export declare function refreshCookie(name: string): void; export {};