3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-08 03:27:20 +00:00
zeppelin/backend/src/plugins/TimeAndDate/docs.ts
2024-08-11 02:05:23 +03:00

12 lines
420 B
TypeScript

import { ZeppelinPluginDocs } from "../../types.js";
import { trimPluginDescription } from "../../utils.js";
import { zTimeAndDateConfig } from "./types.js";
export const timeAndDatePluginDocs: ZeppelinPluginDocs = {
type: "stable",
prettyName: "Time and date",
description: trimPluginDescription(`
Allows controlling the displayed time/date formats and timezones
`),
configSchema: zTimeAndDateConfig,
};