mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-22 10:44:06 +00:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
export type SynologyInboundMessage = {
|
|
body: string;
|
|
from: string;
|
|
senderName: string;
|
|
provider: string;
|
|
chatType: string;
|
|
accountId: string;
|
|
commandAuthorized: boolean;
|
|
chatUserId?: string;
|
|
};
|