文件操作 - index.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/clipboardy/index.d.ts
编辑文件内容
declare const clipboard: { /** Write (copy) to the clipboard asynchronously. @param text - The text to write to the clipboard. @example ``` import clipboard from 'clipboardy'; await clipboard.write('🦄'); await clipboard.read(); //=> '🦄' ``` */ write(text: string): Promise<void>; /** Read (paste) from the clipboard asynchronously. @example ``` import clipboard from 'clipboardy'; await clipboard.write('🦄'); await clipboard.read(); //=> '🦄' ``` */ read(): Promise<string>; /** Write (copy) to the clipboard synchronously. __Doesn't work in browsers.__ @param text - The text to write to the clipboard. @example ``` import clipboard from 'clipboardy'; clipboard.writeSync('🦄'); clipboard.readSync(); //=> '🦄' ``` */ writeSync(text: string): void; /** Read (paste) from the clipboard synchronously. __Doesn't work in browsers.__ @example ``` import clipboard from 'clipboardy'; clipboard.writeSync('🦄'); clipboard.readSync(); //=> '🦄' ``` */ readSync(): string; }; export default clipboard;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件