mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
import { GeneralCallResult } from './common';
|
|
|
|
export interface NodeIKernelNodeMiscService {
|
|
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;
|
|
}
|