mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
12 lines
407 B
TypeScript
12 lines
407 B
TypeScript
import { ZeppelinPluginInfo } from "../../types.js";
|
|
import { trimPluginDescription } from "../../utils.js";
|
|
import { zCasesConfig } from "./types.js";
|
|
|
|
export const casesPluginInfo: ZeppelinPluginInfo = {
|
|
showInDocs: true,
|
|
prettyName: "Cases",
|
|
configSchema: zCasesConfig,
|
|
description: trimPluginDescription(`
|
|
This plugin contains basic configuration for cases created by other plugins
|
|
`),
|
|
};
|