mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-13 21:35:02 +00:00
11 lines
455 B
TypeScript
11 lines
455 B
TypeScript
import { ZeppelinPluginInfo } from "../../types.js";
|
|
import { zCountersConfig } from "./types.js";
|
|
|
|
export const countersPluginInfo: ZeppelinPluginInfo = {
|
|
prettyName: "Counters",
|
|
type: "stable",
|
|
description:
|
|
"Keep track of per-user, per-channel, or global numbers and trigger specific actions based on this number",
|
|
configurationGuide: "See <a href='/docs/setup-guides/counters'>Counters setup guide</a>",
|
|
configSchema: zCountersConfig,
|
|
};
|