文件操作 - index.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/devalue/types/index.d.ts
编辑文件内容
declare module 'devalue' { /** * Turn a value into the JavaScript that creates an equivalent value * */ export function uneval(value: any, replacer?: (value: any) => string | void): string; /** * Turn a value into a JSON string that can be parsed with `devalue.parse` * */ export function stringify(value: any, reducers?: Record<string, (value: any) => any>): string; /** * Revive a value serialized with `devalue.stringify` * */ export function parse(serialized: string, revivers?: Record<string, (value: any) => any>): any; /** * Revive a value flattened with `devalue.stringify` * */ export function unflatten(parsed: number | any[], revivers?: Record<string, (value: any) => any>): any; } //# sourceMappingURL=index.d.ts.map
修改文件时间
将文件时间修改为当前时间的前一年
删除文件