mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 16:32:29 +00:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import { Type } from "@sinclair/typebox";
|
|
|
|
export function createTelegramPollExtraToolSchemas() {
|
|
return {
|
|
pollDurationSeconds: Type.Optional(Type.Number()),
|
|
pollAnonymous: Type.Optional(Type.Boolean()),
|
|
pollPublic: Type.Optional(Type.Boolean()),
|
|
};
|
|
}
|