mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-08 19:47:20 +00:00
feat: update knub; use base Knub types for plugins
This commit is contained in:
parent
4597b83cda
commit
c2ae6d53d8
90 changed files with 713 additions and 607 deletions
12
backend/src/plugins/TimeAndDate/info.ts
Normal file
12
backend/src/plugins/TimeAndDate/info.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { ZeppelinPluginInfo } from "../../types";
|
||||
import { trimPluginDescription } from "../../utils";
|
||||
import { zTimeAndDateConfig } from "./types";
|
||||
|
||||
export const timeAndDatePluginInfo: ZeppelinPluginInfo = {
|
||||
showInDocs: true,
|
||||
prettyName: "Time and date",
|
||||
description: trimPluginDescription(`
|
||||
Allows controlling the displayed time/date formats and timezones
|
||||
`),
|
||||
configSchema: zTimeAndDateConfig,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue