完善前端blog types声明

This commit is contained in:
2025-05-06 19:13:20 +08:00
parent 36246d3263
commit c2868b5128

View File

@@ -0,0 +1,12 @@
export type BlogPermission =
'public' |
'password' |
'listed';
export interface Blog {
id: string;
title: string;
description: string;
publish_at: string;
permissions: BlogPermission[];
}