文件操作 - cookie.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/nuxt/dist/app/composables/cookie.d.ts
编辑文件内容
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 {};
修改文件时间
将文件时间修改为当前时间的前一年
删除文件