文件操作 - stringified.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/type-fest/source/stringified.d.ts
编辑文件内容
/** Create a type with the keys of the given type changed to `string` type. Use-case: Changing interface values to strings in order to use them in a form model. @example ``` import type {Stringified} from 'type-fest'; type Car = { model: string; speed: number; } const carForm: Stringified<Car> = { model: 'Foo', speed: '101' }; ``` @category Object */ export type Stringified<ObjectType> = {[KeyType in keyof ObjectType]: string};
修改文件时间
将文件时间修改为当前时间的前一年
删除文件