文件操作 - index.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/is64bit/index.d.ts
编辑文件内容
/** Check whether operating system CPU architecture is 64-bit or 32-bit. @example ``` import {is64bit} from 'is64bit'; // On ARM64 macOS console.log(await is64bit()); //=> true ``` */ export function is64bit(): Promise<boolean>; /** Check whether operating system CPU architecture is 64-bit or 32-bit. **Note**: Prefer the async version for browser or cross-platform usage as it has a more reliable check. @example ``` import {is64bitSync} from 'is64bit'; // On ARM64 macOS console.log(is64bitSync()); //=> true ``` */ export function is64bitSync(): boolean;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件