mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-14 09:38:13 +08:00
🤔 feat(SQLite): 尝试另一种实现
This commit is contained in:
23
src/types/BBS.d.ts
vendored
Normal file
23
src/types/BBS.d.ts
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user