5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
import { z } from "zod";
|
|
import { buildChannelConfigSchema } from "../api.js";
|
|
|
|
export const SynologyChatChannelConfigSchema = buildChannelConfigSchema(z.object({}).passthrough());
|