mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-06 18:47:20 +00:00
12 lines
411 B
TypeScript
12 lines
411 B
TypeScript
import { ZeppelinPluginInfo } from "../../types";
|
|
import { trimPluginDescription } from "../../utils";
|
|
import { zContextMenusConfig } from "./types";
|
|
|
|
export const contextMenuPluginInfo: ZeppelinPluginInfo = {
|
|
showInDocs: false,
|
|
prettyName: "Context menu",
|
|
description: trimPluginDescription(`
|
|
This plugin provides command shortcuts via context menus
|
|
`),
|
|
configSchema: zContextMenusConfig,
|
|
};
|