Update onMSFSsoError signature with code and desc

The onMSFSsoError method now accepts a numeric code and a string description as parameters instead of a single unknown argument. This change clarifies the expected input for error handling.
This commit is contained in:
手瓜一十雪 2025-11-22 20:30:02 +08:00
parent ae97cfba03
commit f27db01145

View File

@ -5,7 +5,7 @@ export class NodeIDependsAdapter {
} }
onMSFSsoError (_args: unknown) { onMSFSsoError (_code: number, _desc: string) {
} }