This commit is contained in:
手瓜一十雪 2025-01-04 13:06:37 +08:00
parent beac221dc6
commit 3b49ba74d1

View File

@ -83,5 +83,5 @@ export abstract class OneBotAction<PayloadType, ReturnDataType> {
}
}
abstract _handle(payload: PayloadType, adaptername: string): PromiseLike<ReturnDataType>;
abstract _handle(payload: PayloadType, adaptername: string): Promise<ReturnDataType>;
}