mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-08 03:27:20 +00:00
12 lines
420 B
TypeScript
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,
|
|
};
|