1
0
silverbullet/common/manifest.ts

29 lines
829 B
TypeScript
Raw Normal View History

import * as plugos from "../plugos/types.ts";
import { CronHookT } from "../plugos/hooks/cron.ts";
import { EventHookT } from "../plugos/hooks/event.ts";
import { CommandHookT } from "../web/hooks/command.ts";
import { SlashCommandHookT } from "../web/hooks/slash_command.ts";
2023-01-13 14:41:29 +00:00
import { PageNamespaceHookT } from "./hooks/page_namespace.ts";
2022-12-22 15:20:05 +00:00
import { CodeWidgetT } from "../web/hooks/code_widget.ts";
export type SilverBulletHooks =
& CommandHookT
& SlashCommandHookT
& CronHookT
& EventHookT
2022-12-22 15:20:05 +00:00
& CodeWidgetT
& PageNamespaceHookT;
export type SyntaxExtensions = {
syntax?: { [key: string]: NodeDef };
};
export type NodeDef = {
firstCharacters: string[];
regex: string;
styles: { [key: string]: string };
className?: string;
};
export type Manifest = plugos.Manifest<SilverBulletHooks> & SyntaxExtensions;