🎨 del(bbs): 删除 bbsTable

This commit is contained in:
BTMuli
2023-04-25 17:18:22 +08:00
parent 35d9382643
commit 27828e3a40
5 changed files with 8 additions and 118 deletions

23
src/types/BBS.d.ts vendored
View File

@@ -1,23 +0,0 @@
/**
* @file types BBS.d.ts
* @description 米游社BBS相关类型定义
* @auther BTMuli<bt-muli@outlook.com>
* @since Alpha v0.1.4
*/
declare namespace BTMuli.SQLite {
/**
* @description BBS帖子数据
* @interface BBSPost
* @since Alpha v0.1.4
* @property {number} id 帖子ID
* @property {created} created 帖子创建时间
* @property {modified} modified 帖子修改时间
* @return BBSPost
*/
export interface BBSPost {
id: number
created: string
modified: string
}
}