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

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>;
}