feat: 添加博客主题样式文件

This commit is contained in:
2026-01-13 09:44:37 +08:00
parent 8a3cc98330
commit d00c18d38a
6 changed files with 2204 additions and 33 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ export function deepclone<T>(obj: T): T {
* @example
* formatTimeBydate(new Date(), 'yyyy-MM-dd HH:mm:ss');
*/
export function formatTimeBydate(this: Date, f: string): string | undefined {
export function formatTimeBydate(this: string, f: string): string | undefined {
return formatTime(this, f);
}