chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-08-03 01:44:07 +00:00
parent 78f0a4e28a
commit 38ea820606
2 changed files with 7 additions and 3 deletions

View file

@ -16,5 +16,10 @@ export interface PlatformDriver {
* Edit an already-sent message in place (e.g. workflow run progress updates).
* Must be implemented by drivers that support message updates.
*/
edit(message: NeutralMessage, target: RouteTarget, env: Env, messageId: string): Promise<SendResult>;
edit(
message: NeutralMessage,
target: RouteTarget,
env: Env,
messageId: string,
): Promise<SendResult>;
}