mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-13 00:10:27 +00:00
Add multiple NodeIKernel service interface files and tighten up method signatures and types across napcat-core. New interfaces added (e.g. NodeIKernelAVSDKService, NodeIKernelAddBuddyService, NodeIKernelBdhUploadService, NodeIKernelConfigMgrService, NodeIKernelDirectSessionService, NodeIKernelEmojiService, NodeIKernelFeedService, NodeIKernelFileBridgeClientService, NodeIKernelFileBridgeHostService, etc.). Updated existing interfaces with clearer parameter and return types, consistent spacing/semicolons, improved complex return shapes (AlbumService, CollectionService), listener methods, isNull checks, and many other method signature refinements (Avatar, Buddy, DbTools, ECDH, FileAssistant, FlashTransfer, GroupService, and more) to improve type safety and readability.
22 lines
578 B
TypeScript
22 lines
578 B
TypeScript
export interface NodeIKernelQiDianService {
|
|
addKernelQiDianListener (listener: unknown): number;
|
|
|
|
removeKernelQiDianListener (listenerId: number): void;
|
|
|
|
requestExtUinForRemoteControl (arg1: string, arg2: string, arg3: number): unknown;
|
|
|
|
requestMainUinForRemoteControl (arg: unknown): unknown;
|
|
|
|
requestNaviConfig (arg: unknown): unknown;
|
|
|
|
requestQidianUidFromUin (arg: unknown): unknown;
|
|
|
|
requestWpaCorpInfo (arg: unknown): unknown;
|
|
|
|
requestWpaSigT (arg1: unknown, arg2: unknown): unknown;
|
|
|
|
requestWpaUserInfo (arg: unknown): unknown;
|
|
|
|
isNull (): boolean;
|
|
}
|