refactor: use platform interfaces namespace

This commit is contained in:
2026-04-28 11:30:20 +00:00
parent 19344b2535
commit 4b3a2b2e75
6 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ export class SzLetterConnector {
}
public async sendLetter(
optionsArg: plugins.servezoneInterfaces.platformservice.letter.IRequest_SendLetter['request']
optionsArg: plugins.servezoneInterfaces.platform.letter.IReq_SendLetter['request']
) {
if (this.platformClientRef.debugMode) {
@@ -21,9 +21,9 @@ export class SzLetterConnector {
}
const typedRequest =
this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.letter.IRequest_SendLetter>(
this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platform.letter.IReq_SendLetter>(
'sendLetter'
);
const response = await typedRequest.fire(optionsArg);
}
}
}