mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 20:35:02 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import * as t from "io-ts";
|
|
import { CleanAction } from "./clean";
|
|
import { AutomodActionBlueprint } from "../helpers";
|
|
|
|
export const availableActions: Record<string, AutomodActionBlueprint<any>> = {
|
|
clean: CleanAction,
|
|
};
|
|
|
|
export const AvailableActions = t.type({
|
|
clean: CleanAction.configType,
|
|
});
|