chore: fix indentation and semi in core

This commit is contained in:
Wesley F. Young
2024-08-09 14:09:42 +08:00
parent bd9ee62118
commit cfc68e70b6
31 changed files with 1776 additions and 1776 deletions

View File

@@ -18,7 +18,7 @@ export interface CacheScanResult {
export interface ChatCacheList {
pageCount: number;
infos: ChatCacheListItem[]
};
}
export interface ChatCacheListItem {
chatType: ChatType;

View File

@@ -3,4 +3,4 @@ export * from './group';
export * from './msg';
export * from './notify';
export * from './cache';
export * from './system'
export * from './system';

View File

@@ -504,7 +504,7 @@ export interface PicElement {
thumbPath: Map<number, string>;
originImageMd5?: string;
originImageUrl?: string; // http url, 没有hosthost是https://gchat.qpic.cn/, 带download参数的是https://multimedia.nt.qq.com.cn
};
}
export enum GrayTipElementSubType {
INVITE_NEW_MEMBER = 12,

View File

@@ -1,4 +1,4 @@
import { SelfInfo } from "./user"
import { SelfInfo } from "./user";
export interface LineDevice {
instanceId: number
@@ -13,4 +13,4 @@ export interface OBLineDevice {
export interface CoreCache {
selfInfo: SelfInfo,
DeviceList: OBLineDevice[]
}
}