mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 14:41:14 +00:00
Add externalVersion boolean to LoginInitConfig and pass false at initialization; bump appid qua for 9.9.27 entry. Refine several IPC/wrapper typings to use Promise return types, adjust pathIsReadableAndWriteable signature to accept a type and return Promise<number>, and update NodeIKernelNodeMiscService method signatures (styling) while adding getQimei36WithNewSdk(). These changes improve type accuracy for async/native calls and add a new SDK helper.
18 lines
473 B
TypeScript
18 lines
473 B
TypeScript
import { GeneralCallResult } from './common';
|
|
|
|
export interface NodeIKernelNodeMiscService {
|
|
writeVersionToRegistry (version: string): void;
|
|
|
|
getMiniAppPath (): unknown;
|
|
|
|
setMiniAppVersion (version: string): unknown;
|
|
|
|
wantWinScreenOCR (imagepath: string): Promise<GeneralCallResult>;
|
|
|
|
SendMiniAppMsg (arg1: string, arg2: string, arg3: string): unknown;
|
|
|
|
startNewMiniApp (appfile: string, params: string): unknown;
|
|
|
|
getQimei36WithNewSdk (): Promise<string>;
|
|
}
|