🤔 feat(SQLite): 尝试另一种实现

This commit is contained in:
BTMuli
2023-04-25 14:37:07 +08:00
parent 6b3b9748cd
commit cc42d1fcb3
3 changed files with 558 additions and 0 deletions

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

@@ -0,0 +1,23 @@
/**
* @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
}
}